Skip to content

Commit bd13240

Browse files
committed
Fixed missing bracket in utils_test.py
1 parent cc79a92 commit bd13240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_update_struct():
2222
def test_removeall_list():
2323
assert removeall(4, []) == []
2424
assert removeall(4, [1, 2, 3, 4]) == [1, 2, 3]
25-
assert removeall(4, [4, 1, 4, 2, 3, 4, 4] == [1, 2, 3]
25+
assert removeall(4, [4, 1, 4, 2, 3, 4, 4]) == [1, 2, 3]
2626

2727
def test_removeall_string():
2828
assert removeall('s', '') == ''

0 commit comments

Comments
 (0)