diff options
author | Tim Leslie <tim.leslie@gmail.com> | 2007-03-05 06:06:12 +0000 |
---|---|---|
committer | Tim Leslie <tim.leslie@gmail.com> | 2007-03-05 06:06:12 +0000 |
commit | 323904265eacf9c637e3fe75f86b4bad6ca4b31a (patch) | |
tree | 4226c8e1488c7f5a2a1a8e9f305db1760e958227 /numpy/testing/numpytest.py | |
parent | 85eeb4732ea7e49c01db4f7981ee07c8fc1c90c3 (diff) | |
download | numpy-323904265eacf9c637e3fe75f86b4bad6ca4b31a.tar.gz |
scratch that last one. my bad
Diffstat (limited to 'numpy/testing/numpytest.py')
-rw-r--r-- | numpy/testing/numpytest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/numpytest.py b/numpy/testing/numpytest.py index 755de9d1f..6a8b39e6e 100644 --- a/numpy/testing/numpytest.py +++ b/numpy/testing/numpytest.py @@ -398,7 +398,7 @@ class NumpyTest: mstr = self._module_str suite_list = [] if hasattr(test_module,'test_suite'): - suite_list.extend(test_module.test_suite._tests) + suite_list.extend(test_module.test_suite(level)._tests) for name in dir(test_module): obj = getattr(test_module, name) if type(obj) is not type(unittest.TestCase) \ |