diff options
author | Robert Kern <robert.kern@gmail.com> | 2005-09-29 10:08:32 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2005-09-29 10:08:32 +0000 |
commit | 305fabee5b1cf1d03ace5e4aa4bb66b41a358f05 (patch) | |
tree | 6a49a69eadf04ab8a315e7a983ea9a5420e7a411 /scipy/base/tests/test_function_base.py | |
parent | ca2d4dc36cd735c76f895d86e8424099603a9fed (diff) | |
download | numpy-305fabee5b1cf1d03ace5e4aa4bb66b41a358f05.tar.gz |
r3531@Blasphemy: kern | 2005-09-29 02:05:01 -0700
Restoring tests
Diffstat (limited to 'scipy/base/tests/test_function_base.py')
-rw-r--r-- | scipy/base/tests/test_function_base.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scipy/base/tests/test_function_base.py b/scipy/base/tests/test_function_base.py index 058df586f..c202640f8 100644 --- a/scipy/base/tests/test_function_base.py +++ b/scipy/base/tests/test_function_base.py @@ -1,11 +1,11 @@ import unittest - import sys -from scipy_test.testing import * + +from scipy.test.testing import * set_package_path() -import scipy_base;reload(scipy_base) -from scipy_base import * +import scipy.base;reload(scipy.base) +from scipy.base import * del sys.path[0] class test_any(unittest.TestCase): @@ -241,4 +241,4 @@ def compare_results(res,desired): assert_array_equal(res[i],desired[i]) if __name__ == "__main__": - ScipyTest('scipy_base.function_base').run() + ScipyTest('scipy.base.function_base').run() |