summaryrefslogtreecommitdiff
path: root/numpy/fft
diff options
context:
space:
mode:
authorNathaniel J. Smith <njs@pobox.com>2015-12-30 03:01:03 -0800
committerNathaniel J. Smith <njs@pobox.com>2015-12-30 05:43:43 -0800
commita61ddd3812cc95f9c9e6eeac7f8bcfb92130f978 (patch)
treeeda1bbe23db037bf224179400eaade20266afe22 /numpy/fft
parent237ab4398ac880be30fc262e7bf6163e9baff921 (diff)
downloadpython-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__.py6
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