diff options
Diffstat (limited to 'numpy/lib/tests/test_function_base.py')
-rw-r--r-- | numpy/lib/tests/test_function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py index f4d6c009d..c6db75faa 100644 --- a/numpy/lib/tests/test_function_base.py +++ b/numpy/lib/tests/test_function_base.py @@ -616,7 +616,7 @@ class TestUnique(TestCase): assert(all(unique(x) == [1+1j, 1+10j, 5+6j, 10])) -class TestPiecewise(NumpyTestCase): +class TestPiecewise(TestCase): def check_simple(self): # Condition is single bool list x = piecewise([0, 0], [True, False], [1]) |