diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-03-23 06:50:00 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-03-24 09:55:09 -0600 |
commit | fbb29df68bd7f330d5a5ced2c20e9244f12f9648 (patch) | |
tree | 43b8d9dab23035628ca116be269b507655ecaf53 /numpy/testing/nose_tools/noseclasses.py | |
parent | e8389cb15f8d8fd902ea9f7aad0da64bce0f2583 (diff) | |
download | numpy-fbb29df68bd7f330d5a5ced2c20e9244f12f9648.tar.gz |
TST: Rename some compiled c test modules
The renamed C modules provide low level functions for testing. The
rename marks them as private functions and makes them invisible to
pytest by default.
Diffstat (limited to 'numpy/testing/nose_tools/noseclasses.py')
-rw-r--r-- | numpy/testing/nose_tools/noseclasses.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/nose_tools/noseclasses.py b/numpy/testing/nose_tools/noseclasses.py index 9756b9b45..08dec0ca9 100644 --- a/numpy/testing/nose_tools/noseclasses.py +++ b/numpy/testing/nose_tools/noseclasses.py @@ -325,7 +325,7 @@ class FPUModeCheckPlugin(Plugin): """ def prepareTestCase(self, test): - from numpy.core.multiarray_tests import get_fpu_mode + from numpy.core._multiarray_tests import get_fpu_mode def run(result): old_mode = get_fpu_mode() |