diff options
Diffstat (limited to 'scipy/base/tests/test_matrix.py')
-rw-r--r-- | scipy/base/tests/test_matrix.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scipy/base/tests/test_matrix.py b/scipy/base/tests/test_matrix.py index 7f420c3ef..b504af8a2 100644 --- a/scipy/base/tests/test_matrix.py +++ b/scipy/base/tests/test_matrix.py @@ -28,7 +28,7 @@ class test_ctor(ScipyTestCase): class test_properties(ScipyTestCase): def test_basic(self): - from scipy.basic import linalg + import scipy.corelinalg as linalg A = array([[1., 2.], [3., 4.]]) @@ -96,7 +96,7 @@ class test_autocasting(ScipyTestCase): class test_algebra(ScipyTestCase): def test_basic(self): - from scipy.basic import linalg + import scipy.corelinalg as linalg A = array([[1., 2.], [3., 4.]]) |