summaryrefslogtreecommitdiff
path: root/numpy/linalg
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/linalg')
-rw-r--r--numpy/linalg/tests/test_linalg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/tests/test_linalg.py b/numpy/linalg/tests/test_linalg.py
index df55d3514..2d6d29ffa 100644
--- a/numpy/linalg/tests/test_linalg.py
+++ b/numpy/linalg/tests/test_linalg.py
@@ -258,7 +258,7 @@ class TestEigh(HermitianTestCase, TestCase):
assert_almost_equal(ev, evalues)
class TestNorm(TestCase):
- def check_empty(self):
+ def test_empty(self):
assert_equal(norm([]), 0.0)
assert_equal(norm(array([], dtype = double)), 0.0)
assert_equal(norm(atleast_2d(array([], dtype = double))), 0.0)