summaryrefslogtreecommitdiff
path: root/numpy/matrixlib/tests/test_numeric.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/matrixlib/tests/test_numeric.py')
-rw-r--r--numpy/matrixlib/tests/test_numeric.py2
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)