summaryrefslogtreecommitdiff
path: root/numpy/matrixlib/tests/test_regression.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/matrixlib/tests/test_regression.py')
-rw-r--r--numpy/matrixlib/tests/test_regression.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/matrixlib/tests/test_regression.py b/numpy/matrixlib/tests/test_regression.py
index 119b21d8a..40062653f 100644
--- a/numpy/matrixlib/tests/test_regression.py
+++ b/numpy/matrixlib/tests/test_regression.py
@@ -17,8 +17,8 @@ class TestRegression(TestCase):
assert_(type(a.real) is np.matrix)
assert_(type(a.imag) is np.matrix)
c, d = np.matrix([0.0]).nonzero()
- assert_(type(c) is np.matrix)
- assert_(type(d) is np.matrix)
+ assert_(type(c) is np.ndarray)
+ assert_(type(d) is np.ndarray)
def test_matrix_multiply_by_1d_vector(self, level=rlevel) :
"""Ticket #473"""