diff options
author | Robert Kern <robert.kern@gmail.com> | 2008-07-03 08:43:58 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2008-07-03 08:43:58 +0000 |
commit | c8f88c0411203a0d1a09aadef920c563ef54c12a (patch) | |
tree | c56f0999d8202544352b6714d38a599a30ababe8 /numpy/oldnumeric/tests | |
parent | 638f015c904d32e0f89604d088731a3ad2daccfd (diff) | |
download | numpy-c8f88c0411203a0d1a09aadef920c563ef54c12a.tar.gz |
Clean up test output such that a completely-passing test suite has no extraneous output.
Diffstat (limited to 'numpy/oldnumeric/tests')
-rw-r--r-- | numpy/oldnumeric/tests/test_oldnumeric.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/numpy/oldnumeric/tests/test_oldnumeric.py b/numpy/oldnumeric/tests/test_oldnumeric.py index e182a1a31..18c970235 100644 --- a/numpy/oldnumeric/tests/test_oldnumeric.py +++ b/numpy/oldnumeric/tests/test_oldnumeric.py @@ -1,3 +1,5 @@ +import unittest + from numpy.testing import * from numpy import array @@ -5,7 +7,7 @@ from numpy.oldnumeric import * from numpy.core.numeric import float32, float64, complex64, complex128, int8, \ int16, int32, int64, uint, uint8, uint16, uint32, uint64 -class test_oldtypes(NumPyTestCase): +class test_oldtypes(unittest.TestCase): def test_oldtypes(self, level=1): a1 = array([0,1,0], Float) a2 = array([0,1,0], float) |