mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
Fix broken test
This commit is contained in:
@@ -21,10 +21,10 @@ except ValueError:
|
||||
else:
|
||||
assert False, "ValueError was not raised"
|
||||
|
||||
x = [[1,2,3], 'a', 1]
|
||||
y = [[3,1,1], 'z', 2]
|
||||
x = [[1,0,-3], 'a', 1]
|
||||
y = [[3,2,1], 'z', 2]
|
||||
assert x < y, "list __lt__ failed"
|
||||
|
||||
x = [5, -3, 1]
|
||||
x = [5, 13, 31]
|
||||
y = [1, 10, 29]
|
||||
assert x > y, "list __gt__ failed"
|
||||
assert x > y, "list __gt__ failed"
|
||||
|
||||
Reference in New Issue
Block a user