summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_getlimits.py
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2006-07-17 23:43:21 +0000
committercookedm <cookedm@localhost>2006-07-17 23:43:21 +0000
commit10943b683e107694053221df6b36e5117eb38e13 (patch)
treee2b06349dc59e9f7027b8c2b88ddaaa519f6b9a9 /numpy/lib/tests/test_getlimits.py
parent2acb0e779d6d0a50288aed3c050fc1fbffaf692c (diff)
downloadnumpy-10943b683e107694053221df6b36e5117eb38e13.tar.gz
Replace ScipyTestCase with NumpyTestCase
Diffstat (limited to 'numpy/lib/tests/test_getlimits.py')
-rw-r--r--numpy/lib/tests/test_getlimits.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/lib/tests/test_getlimits.py b/numpy/lib/tests/test_getlimits.py
index f70081518..1eaadc953 100644
--- a/numpy/lib/tests/test_getlimits.py
+++ b/numpy/lib/tests/test_getlimits.py
@@ -10,29 +10,29 @@ restore_path()
##################################################
-class test_python_float(ScipyTestCase):
+class test_python_float(NumpyTestCase):
def check_singleton(self):
ftype = finfo(float)
ftype2 = finfo(float)
assert_equal(id(ftype),id(ftype2))
-class test_single(ScipyTestCase):
+class test_single(NumpyTestCase):
def check_singleton(self):
ftype = finfo(single)
ftype2 = finfo(single)
assert_equal(id(ftype),id(ftype2))
-class test_double(ScipyTestCase):
+class test_double(NumpyTestCase):
def check_singleton(self):
ftype = finfo(double)
ftype2 = finfo(double)
assert_equal(id(ftype),id(ftype2))
-class test_longdouble(ScipyTestCase):
+class test_longdouble(NumpyTestCase):
def check_singleton(self,level=2):
ftype = finfo(longdouble)
ftype2 = finfo(longdouble)
assert_equal(id(ftype),id(ftype2))
if __name__ == "__main__":
- ScipyTest().run()
+ NumpyTest().run()