diff options
author | David Cournapeau <cournape@gmail.com> | 2009-03-02 14:18:01 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-03-02 14:18:01 +0000 |
commit | e9d13fa6167846f89aeef0d3744166ca976a8a26 (patch) | |
tree | 7a31727928af9e33534c1a8021a98fec42d89295 /numpy/linalg | |
parent | 023546bfaac366615436f3daceb7d5ffc211c714 (diff) | |
download | numpy-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.py | 2 |
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) |