summaryrefslogtreecommitdiff
path: root/numpy/ma/testutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/ma/testutils.py')
-rw-r--r--numpy/ma/testutils.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/ma/testutils.py b/numpy/ma/testutils.py
index 83aec7ea2..f1749619d 100644
--- a/numpy/ma/testutils.py
+++ b/numpy/ma/testutils.py
@@ -15,9 +15,9 @@ import operator
import numpy as np
from numpy import ndarray, float_
import numpy.core.umath as umath
-from numpy.testing import NumpyTest, NumpyTestCase
-import numpy.testing.utils as utils
+from numpy.testing import *
from numpy.testing.utils import build_err_msg, rand
+import numpy.testing.utils as utils
import core
from core import mask_or, getmask, getmaskarray, masked_array, nomask, masked
@@ -166,9 +166,9 @@ def assert_array_compare(comparison, x, y, err_msg='', verbose=True, header='',
raise ValueError(msg)
# OK, now run the basic tests on filled versions
return utils.assert_array_compare(comparison,
- x.filled(fill_value), y.filled(fill_value),
- err_msg=err_msg,
- verbose=verbose, header=header)
+ x.filled(fill_value), y.filled(fill_value),
+ err_msg=err_msg,
+ verbose=verbose, header=header)
def assert_array_equal(x, y, err_msg='', verbose=True):