Skip to content

Commit 93f8549

Browse files
lhchavezmiguelHx
andauthored
Update Python/chapter01/1.5 - OneAway/miguel_1.5_sol.py
Co-Authored-By: miguelHx <[email protected]>
1 parent 4ccef3d commit 93f8549

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Python/chapter01/1.5 - OneAway/miguel_1.5_sol.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ def _run_tests(self, f: Callable[[str, str], bool]) -> None:
5454
("a", "", True),
5555
("", "b", True),
5656
("a", "b", True),
57-
("", "", True)
57+
("", "", True),
58+
("pale", "elap", False),
5859
]
5960
for s1, s2, expected in cases:
6061
self.assertEqual(f(s1, s2), expected, msg=(s1, s2))

0 commit comments

Comments
 (0)