Skip to content

Commit dd4e46f

Browse files
Fixup Vect16
1 parent c580bdd commit dd4e46f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_hpcombi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ def test_hpcombi_vect16_set_item():
4949
assert x == Vect16([0, 10] + [0] * 14)
5050

5151
def test_hpcombi_vect16_lt():
52-
x = Vect16()
52+
x = Vect16([0])
5353
y = Vect16([1])
5454
assert x < y
5555
assert not x > y # pylint: disable=unnecessary-negation
5656
assert not y < x # pylint: disable=unnecessary-negation
5757
assert y > x
5858

5959
def test_hpcombi_vect16_eq():
60-
x = Vect16()
60+
x = Vect16([0])
6161
y = Vect16([1])
6262
assert x != y
6363
assert y != x

0 commit comments

Comments
 (0)