From 401a3bde032817b6cd956e7b49ebc8def7118c68 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 9 Aug 2012 21:30:49 +0200 Subject: [PATCH] Py3 test fix (only failure reporting) --- tests/run/pyarray.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run/pyarray.pyx b/tests/run/pyarray.pyx index 428a001..187906b 100644 --- a/tests/run/pyarray.pyx +++ b/tests/run/pyarray.pyx @@ -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 -- 2.7.4