From 498b9db021f6a123d88d271072a06e50e57b3a90 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Fri, 12 Oct 2012 14:54:07 -0700 Subject: [PATCH] Fix typo in array test. --- 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 7dfc531..494d7b6 100644 --- a/tests/run/pyarray.pyx +++ b/tests/run/pyarray.pyx @@ -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] -- 2.7.4