From e9d13fa6167846f89aeef0d3744166ca976a8a26 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Mon, 2 Mar 2009 14:18:01 +0000 Subject: rename check_empty method to test_, so that is is picked up by nose. --- numpy/linalg/tests/test_linalg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/linalg') 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) -- cgit v1.2.1