Commit 401a3bde authored by Stefan Behnel's avatar Stefan Behnel

Py3 test fix (only failure reporting)

parent 86450daf
......@@ -45,7 +45,7 @@ def test_fast_access(a):
value = ca._f[1]
assert value == 2.0, value
assert ca._c[:5] == b'\x00\x00\x80?\x00', ca._c[:5]
assert ca._c[:5] == b'\x00\x00\x80?\x00', repr(ca._c[:5])
with nogil:
ca._f[1] += 2.0
......
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