summaryrefslogtreecommitdiff
path: root/numpy/testing/tests/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/testing/tests/test_utils.py')
-rw-r--r--numpy/testing/tests/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/tests/test_utils.py b/numpy/testing/tests/test_utils.py
index cbc8cd23e..94fc4d655 100644
--- a/numpy/testing/tests/test_utils.py
+++ b/numpy/testing/tests/test_utils.py
@@ -194,7 +194,7 @@ class TestArrayAlmostEqual(_GenericTest, unittest.TestCase):
def test_inf(self):
a = np.array([[1., 2.], [3., 4.]])
b = a.copy()
- a[0,0] = np.inf
+ a[0, 0] = np.inf
self.assertRaises(AssertionError,
lambda : self._assert_func(a, b))