diff options
Diffstat (limited to 'numpy/matrixlib/tests/test_numeric.py')
-rw-r--r-- | numpy/matrixlib/tests/test_numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/matrixlib/tests/test_numeric.py b/numpy/matrixlib/tests/test_numeric.py index 940bfc5d9..fa88f5288 100644 --- a/numpy/matrixlib/tests/test_numeric.py +++ b/numpy/matrixlib/tests/test_numeric.py @@ -6,5 +6,5 @@ from numpy import matrix class TestDot(TestCase): def test_matscalar(self): - b1 = matrix(ones((3,3),dtype=complex)) + b1 = matrix(ones((3, 3), dtype=complex)) assert_equal(b1*1.0, b1) |