diff options
author | Robert Cimrman <cimrman3@ntc.zcu.cz> | 2009-07-20 11:59:40 +0000 |
---|---|---|
committer | Robert Cimrman <cimrman3@ntc.zcu.cz> | 2009-07-20 11:59:40 +0000 |
commit | 1319b2ca9c0a7491e5143f2608f444c2b1b7e346 (patch) | |
tree | ac7569257d268dd5f62c018247e32ab5c67434fc /numpy/lib/tests/test_arraysetops.py | |
parent | 520872500893f95f1676cdf6715c8d34b32a2449 (diff) | |
download | numpy-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.py | 2 |
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] ) |