diff options
Diffstat (limited to 'numpy/lib/__init__.py')
-rw-r--r-- | numpy/lib/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py index 0606dfbbd..1d65db55e 100644 --- a/numpy/lib/__init__.py +++ b/numpy/lib/__init__.py @@ -41,6 +41,6 @@ __all__ += npyio.__all__ __all__ += financial.__all__ __all__ += nanfunctions.__all__ -from numpy.testing import Tester -test = Tester().test -bench = Tester().bench +from numpy.testing.nosetester import _numpy_tester +test = _numpy_tester().test +bench = _numpy_tester().bench |