Skip to content
Snippets Groups Projects
Commit 75310a95 authored by dilawar's avatar dilawar :ant:
Browse files

test (fix): adds missing return statement.

parent d71a6ba0
No related branches found
No related tags found
Loading
Pipeline #3796 passed with stages
in 2 minutes and 24 seconds
...@@ -10,7 +10,7 @@ def test_sanity(capsys): ...@@ -10,7 +10,7 @@ def test_sanity(capsys):
def almost_equal(s1, s2, threshold=0.9) -> bool: def almost_equal(s1, s2, threshold=0.9) -> bool:
assert SequenceMatcher(a=s1, b=s2).ratio() > threshold return SequenceMatcher(a=s1, b=s2).ratio() > threshold
def test_run_repeat(capsys): def test_run_repeat(capsys):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment