We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc79a92 commit bd13240Copy full SHA for bd13240
utils_test.py
@@ -22,7 +22,7 @@ def test_update_struct():
22
def test_removeall_list():
23
assert removeall(4, []) == []
24
assert removeall(4, [1, 2, 3, 4]) == [1, 2, 3]
25
- assert removeall(4, [4, 1, 4, 2, 3, 4, 4] == [1, 2, 3]
+ assert removeall(4, [4, 1, 4, 2, 3, 4, 4]) == [1, 2, 3]
26
27
def test_removeall_string():
28
assert removeall('s', '') == ''
0 commit comments