diff options
author | Nathaniel J. Smith <njs@pobox.com> | 2015-12-30 03:01:03 -0800 |
---|---|---|
committer | Nathaniel J. Smith <njs@pobox.com> | 2015-12-30 05:43:43 -0800 |
commit | a61ddd3812cc95f9c9e6eeac7f8bcfb92130f978 (patch) | |
tree | eda1bbe23db037bf224179400eaade20266afe22 /numpy/fft | |
parent | 237ab4398ac880be30fc262e7bf6163e9baff921 (diff) | |
download | python-numpy-a61ddd3812cc95f9c9e6eeac7f8bcfb92130f978.tar.gz python-numpy-a61ddd3812cc95f9c9e6eeac7f8bcfb92130f978.tar.bz2 python-numpy-a61ddd3812cc95f9c9e6eeac7f8bcfb92130f978.zip |
[TST] Refactor new raise_warnings logic for subpackage test suites
Diffstat (limited to 'numpy/fft')
-rw-r--r-- | numpy/fft/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/fft/__init__.py b/numpy/fft/__init__.py index 96809a94f..a1f9e90e0 100644 --- a/numpy/fft/__init__.py +++ b/numpy/fft/__init__.py @@ -6,6 +6,6 @@ from .info import __doc__ from .fftpack import * from .helper import * -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 |