Skip to content

Commit 2b74727

Browse files
committed
Fix broken test
1 parent ea1a7bb commit 2b74727

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/snippets/list.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
else:
2222
assert False, "ValueError was not raised"
2323

24-
x = [[1,2,3], 'a', 1]
25-
y = [[3,1,1], 'z', 2]
24+
x = [[1,0,-3], 'a', 1]
25+
y = [[3,2,1], 'z', 2]
2626
assert x < y, "list __lt__ failed"
2727

28-
x = [5, -3, 1]
28+
x = [5, 13, 31]
2929
y = [1, 10, 29]
30-
assert x > y, "list __gt__ failed"
30+
assert x > y, "list __gt__ failed"

0 commit comments

Comments
 (0)