Commit 498b9db0 authored by Robert Bradshaw's avatar Robert Bradshaw

Fix typo in array test.

parent 90fbe6a1
......@@ -25,7 +25,7 @@ def test_copy(a):
"""
cdef array.array ca = a
cdef array.array b
b = array.copy(a)
b = array.copy(ca)
assert a == b
a[2] = 3.5
assert b[2] != a[2]
......
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