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 c580bdd commit dd4e46fCopy full SHA for dd4e46f
1 file changed
tests/test_hpcombi.py
@@ -49,15 +49,15 @@ def test_hpcombi_vect16_set_item():
49
assert x == Vect16([0, 10] + [0] * 14)
50
51
def test_hpcombi_vect16_lt():
52
- x = Vect16()
+ x = Vect16([0])
53
y = Vect16([1])
54
assert x < y
55
assert not x > y # pylint: disable=unnecessary-negation
56
assert not y < x # pylint: disable=unnecessary-negation
57
assert y > x
58
59
def test_hpcombi_vect16_eq():
60
61
62
assert x != y
63
assert y != x
0 commit comments