Commit 8cd263f6 authored by Robert Bradshaw's avatar Robert Bradshaw

Fix typo in array test.

--HG--
extra : rebase_source : 2998d32280e8f7becd6a0993adaea565d2e986fd
parent 47277752
......@@ -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