From 1319b2ca9c0a7491e5143f2608f444c2b1b7e346 Mon Sep 17 00:00:00 2001 From: Robert Cimrman Date: Mon, 20 Jul 2009 11:59:40 +0000 Subject: Fix to setdiff1d (and masked version) + tests (#1133, by N.C.) --- numpy/lib/tests/test_arraysetops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/tests/test_arraysetops.py') 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] ) -- cgit v1.2.1