diff options
Diffstat (limited to 'numpy/tests/test_matlib.py')
-rw-r--r-- | numpy/tests/test_matlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/tests/test_matlib.py b/numpy/tests/test_matlib.py index 814c24b0c..0bc8548ba 100644 --- a/numpy/tests/test_matlib.py +++ b/numpy/tests/test_matlib.py @@ -7,7 +7,7 @@ from numpy.testing import assert_array_equal, assert_, run_module_suite def test_empty(): x = np.matlib.empty((2,)) assert_(isinstance(x, np.matrix)) - assert_(x.shape, (1,2)) + assert_(x.shape, (1, 2)) def test_ones(): assert_array_equal(np.matlib.ones((2, 3)), |