summaryrefslogtreecommitdiff
path: root/numpy/linalg
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-03-02 14:18:01 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-03-02 14:18:01 +0000
commite9d13fa6167846f89aeef0d3744166ca976a8a26 (patch)
tree7a31727928af9e33534c1a8021a98fec42d89295 /numpy/linalg
parent023546bfaac366615436f3daceb7d5ffc211c714 (diff)
downloadnumpy-e9d13fa6167846f89aeef0d3744166ca976a8a26.tar.gz
rename check_empty method to test_, so that is is picked up by nose.
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)