summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_function_base.py
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2008-07-09 11:13:25 +0000
committerStefan van der Walt <stefan@sun.ac.za>2008-07-09 11:13:25 +0000
commit59e1ee936c730b19a4c4016172658695fb197ada (patch)
treedcfeffd1ba59a4b62e5d8ef5bcc5e6bbd816c1ac /numpy/lib/tests/test_function_base.py
parent88b409fca114c709615b9df443bfbf58527000b4 (diff)
downloadnumpy-59e1ee936c730b19a4c4016172658695fb197ada.tar.gz
Use TestCase instead of NumpyTestCase.
Diffstat (limited to 'numpy/lib/tests/test_function_base.py')
-rw-r--r--numpy/lib/tests/test_function_base.py2
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])