diff options
Diffstat (limited to 'numpy/ma/testutils.py')
-rw-r--r-- | numpy/ma/testutils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/ma/testutils.py b/numpy/ma/testutils.py index c4ee639ed..c0deaa9f4 100644 --- a/numpy/ma/testutils.py +++ b/numpy/ma/testutils.py @@ -15,7 +15,7 @@ import numpy.core.umath as umath import numpy.testing from numpy.testing import ( assert_, assert_allclose, assert_array_almost_equal_nulp, - assert_raises, build_err_msg, run_module_suite + assert_raises, build_err_msg ) from .core import mask_or, getmask, masked_array, nomask, masked, filled @@ -33,8 +33,8 @@ __all__masked = [ # masked arrays. But there was no way to tell before. from unittest import TestCase __some__from_testing = [ - 'TestCase', 'assert_', 'assert_allclose', - 'assert_array_almost_equal_nulp', 'assert_raises', 'run_module_suite', + 'TestCase', 'assert_', 'assert_allclose', 'assert_array_almost_equal_nulp', + 'assert_raises' ] __all__ = __all__masked + __some__from_testing |