diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2007-10-02 07:54:11 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2007-10-02 07:54:11 +0000 |
commit | 610438f1fb2436cec44b9ddd451daa67d846cdd0 (patch) | |
tree | 05dd27f00f161ee3a54b1dcf5f3b7f161cf8a68c /numpy/lib/tests/test_getlimits.py | |
parent | b4bb63c29c8bb81bcc2d2070f1bd3b81253acd85 (diff) | |
download | numpy-610438f1fb2436cec44b9ddd451daa67d846cdd0.tar.gz |
Rename test classes to CapWords.
Diffstat (limited to 'numpy/lib/tests/test_getlimits.py')
-rw-r--r-- | numpy/lib/tests/test_getlimits.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/lib/tests/test_getlimits.py b/numpy/lib/tests/test_getlimits.py index 7a4fea57a..3c53f3322 100644 --- a/numpy/lib/tests/test_getlimits.py +++ b/numpy/lib/tests/test_getlimits.py @@ -11,31 +11,31 @@ restore_path() ################################################## -class test_python_float(NumpyTestCase): +class TestPythonFloat(NumpyTestCase): def check_singleton(self): ftype = finfo(float) ftype2 = finfo(float) assert_equal(id(ftype),id(ftype2)) -class test_single(NumpyTestCase): +class TestSingle(NumpyTestCase): def check_singleton(self): ftype = finfo(single) ftype2 = finfo(single) assert_equal(id(ftype),id(ftype2)) -class test_double(NumpyTestCase): +class TestDouble(NumpyTestCase): def check_singleton(self): ftype = finfo(double) ftype2 = finfo(double) assert_equal(id(ftype),id(ftype2)) -class test_longdouble(NumpyTestCase): +class TestLongdouble(NumpyTestCase): def check_singleton(self,level=2): ftype = finfo(longdouble) ftype2 = finfo(longdouble) assert_equal(id(ftype),id(ftype2)) -class test_iinfo(NumpyTestCase): +class TestIinfo(NumpyTestCase): def check_basic(self): dts = zip(['i1', 'i2', 'i4', 'i8', 'u1', 'u2', 'u4', 'u8'], |