diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2009-04-09 04:31:10 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2009-04-09 04:31:10 +0000 |
commit | 942b09dec6f5859bc8f058b638fada06c1de3322 (patch) | |
tree | 1b48617c9b86f0217eb8faa34aa0919779958ef4 | |
parent | 1a5281d92824bef01f3c4af8a8f343f5148041dd (diff) | |
download | numpy-942b09dec6f5859bc8f058b638fada06c1de3322.tar.gz |
Fix missing 'n' in test.
-rw-r--r-- | numpy/core/tests/test_regression.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_regression.py b/numpy/core/tests/test_regression.py index ed0603a4d..cbad3ab1c 100644 --- a/numpy/core/tests/test_regression.py +++ b/numpy/core/tests/test_regression.py @@ -1284,7 +1284,7 @@ class TestRegression(TestCase): def test_array_too_big(self): """Ticket #1080.""" - assert_raises(ValueError,zeros,[1048576, 1048576, 1048576, 1048576]) + assert_raises(ValueError,np.zeros,[1048576, 1048576, 1048576, 1048576]) if __name__ == "__main__": run_module_suite() |