diff options
Diffstat (limited to 'numpy/dft/tests/test_helper.py')
-rw-r--r-- | numpy/dft/tests/test_helper.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/dft/tests/test_helper.py b/numpy/dft/tests/test_helper.py index f962096f6..e8dd36165 100644 --- a/numpy/dft/tests/test_helper.py +++ b/numpy/dft/tests/test_helper.py @@ -4,12 +4,12 @@ """ import sys -from scipy.testing import * +from numpy.testing import * set_package_path() -from scipy.corefft import fftshift,ifftshift,fftfreq +from numpy.corefft import fftshift,ifftshift,fftfreq del sys.path[0] -from scipy import pi +from numpy import pi def random(size): return rand(*size) |