summaryrefslogtreecommitdiff
path: root/scipy/base/tests/test_function_base.py
diff options
context:
space:
mode:
authorRobert Kern <robert.kern@gmail.com>2005-09-29 10:08:32 +0000
committerRobert Kern <robert.kern@gmail.com>2005-09-29 10:08:32 +0000
commit305fabee5b1cf1d03ace5e4aa4bb66b41a358f05 (patch)
tree6a49a69eadf04ab8a315e7a983ea9a5420e7a411 /scipy/base/tests/test_function_base.py
parentca2d4dc36cd735c76f895d86e8424099603a9fed (diff)
downloadnumpy-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.py10
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()