summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_arraysetops.py
diff options
context:
space:
mode:
authorRobert Cimrman <cimrman3@ntc.zcu.cz>2009-07-20 11:59:40 +0000
committerRobert Cimrman <cimrman3@ntc.zcu.cz>2009-07-20 11:59:40 +0000
commit1319b2ca9c0a7491e5143f2608f444c2b1b7e346 (patch)
treeac7569257d268dd5f62c018247e32ab5c67434fc /numpy/lib/tests/test_arraysetops.py
parent520872500893f95f1676cdf6715c8d34b32a2449 (diff)
downloadnumpy-1319b2ca9c0a7491e5143f2608f444c2b1b7e346.tar.gz
Fix to setdiff1d (and masked version) + tests (#1133, by N.C.)
Diffstat (limited to 'numpy/lib/tests/test_arraysetops.py')
-rw-r--r--numpy/lib/tests/test_arraysetops.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_arraysetops.py b/numpy/lib/tests/test_arraysetops.py
index a83ab1394..92305129a 100644
--- a/numpy/lib/tests/test_arraysetops.py
+++ b/numpy/lib/tests/test_arraysetops.py
@@ -210,7 +210,7 @@ class TestAso(TestCase):
assert_array_equal([], union1d([],[]))
def test_setdiff1d( self ):
- a = np.array( [6, 5, 4, 7, 1, 2] )
+ a = np.array( [6, 5, 4, 7, 1, 2, 7, 4] )
b = np.array( [2, 4, 3, 3, 2, 1, 5] )
ec = np.array( [6, 7] )