summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_regression.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-08-18 19:47:56 -0600
committerCharles Harris <charlesr.harris@gmail.com>2013-09-23 15:11:12 -0600
commit3512346df802732763076f3d9975a53a96bdfa57 (patch)
treea06a1cca1efd872fd18e25fe549fefe628341a70 /numpy/lib/tests/test_regression.py
parent0a389625ab97b788cbef4afb9c91467b8c745692 (diff)
downloadnumpy-3512346df802732763076f3d9975a53a96bdfa57.tar.gz
DEP, MAINT: Remove references to numeric and numarray.
This covers those locations that either import or build numarray or numeric.
Diffstat (limited to 'numpy/lib/tests/test_regression.py')
-rw-r--r--numpy/lib/tests/test_regression.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/lib/tests/test_regression.py b/numpy/lib/tests/test_regression.py
index 7d4487342..43c0d8636 100644
--- a/numpy/lib/tests/test_regression.py
+++ b/numpy/lib/tests/test_regression.py
@@ -180,10 +180,10 @@ class TestRegression(TestCase):
sys.stdout = oldstdout
def test_include_dirs(self):
- """As a sanity check, just test that get_include and
- get_numarray_include include something reasonable. Somewhat
- related to ticket #1405."""
- include_dirs = [np.get_include(), np.get_numarray_include()]
+ # As a sanity check, just test that get_include
+ # includes something reasonable. Somewhat
+ # related to ticket #1405."""
+ include_dirs = [np.get_include()]
for path in include_dirs:
assert_(isinstance(path, (str, unicode)))
assert_(path != '')