diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2009-07-04 12:14:21 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2009-07-04 12:14:21 +0000 |
commit | 99df3daf134808115b458d90c4c6fa676a02e6f2 (patch) | |
tree | cdf6ec52346142e09084507cb6e89246f04a1ed2 /numpy/lib/tests/test_index_tricks.py | |
parent | 133e5c29958ef7090a9ca80665c9436cdcebb7f9 (diff) | |
download | numpy-99df3daf134808115b458d90c4c6fa676a02e6f2.tar.gz |
Fix twodim tests.
Diffstat (limited to 'numpy/lib/tests/test_index_tricks.py')
-rw-r--r-- | numpy/lib/tests/test_index_tricks.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_index_tricks.py b/numpy/lib/tests/test_index_tricks.py index 50dc5ac15..afa94396a 100644 --- a/numpy/lib/tests/test_index_tricks.py +++ b/numpy/lib/tests/test_index_tricks.py @@ -1,6 +1,7 @@ from numpy.testing import * from numpy import ( array, ones, r_, mgrid, unravel_index, zeros, where, - fill_diagonal, diag_indices, diag_indices_from ) + ndenumerate, fill_diagonal, diag_indices, + diag_indices_from ) class TestUnravelIndex(TestCase): def test_basic(self): |