Commit f77a28de authored by Xavier Thompson's avatar Xavier Thompson

Fix mismatched comparison types in cypclass dict unit test

parent f4e84f3c
......@@ -304,7 +304,7 @@ def test_len():
1
"""
d = cypdict[Index, Value]()
cdef int nb_elements = 0
cdef long unsigned int nb_elements = 0
for i in range(10):
d[Index(i)] = Value(i)
for k in d:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment