summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_regression.py
diff options
context:
space:
mode:
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 != '')