We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a2749e commit 5fa014dCopy full SHA for 5fa014d
1 file changed
tests/test_basic.py
@@ -16,14 +16,14 @@ def test_wrong_edit_distance():
16
assert 1 == 0 # This test is designed to fail.
17
18
19
-@pytest.mark.skip(reason="This decorator should be removed when test passes.")
+# @pytest.mark.skip(reason="This decorator should be removed when test passes.")
20
@pytest.mark.parametrize(
21
"output, expected",
22
[
23
# Test identical strings
24
(ed.edit_distance(string1="kitten", string2="kitten"), 0),
25
# Test insertion
26
- (ed.edit_distance(string1="kitten", string2="kittens"), 0),
+ (ed.edit_distance(string1="kitten", string2="kittens"), 1),
27
# Test deletion
28
(ed.edit_distance(string1="hello", string2="hllo"), 1),
29
# Test substition
0 commit comments