diff options
| author | David Cournapeau <cournape@gmail.com> | 2009-05-16 09:36:53 +0000 |
|---|---|---|
| committer | David Cournapeau <cournape@gmail.com> | 2009-05-16 09:36:53 +0000 |
| commit | 31a59f21ffb1b110c129f195548dee49d53e450a (patch) | |
| tree | 0d74553f36d46bd5da54c06c4124974bf2ce30d3 | |
| parent | 8116f7b493715790d05001e5e699ef972d86dff9 (diff) | |
| download | numpy-maintenance/1.2.x.tar.gz | |
Fix missing namespace in regression test.maintenance/1.2.x
| -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 504037114..64ad56ed6 100644 --- a/numpy/core/tests/test_regression.py +++ b/numpy/core/tests/test_regression.py @@ -1213,7 +1213,7 @@ class TestRegression(TestCase): """No ticket""" data = [('john', 4), ('mary', 5)] dtype1 = [(('source:yy', 'name'), 'O'), (('source:xx', 'id'), int)] - arr = array(data, dtype=dtype1) + arr = np.array(data, dtype=dtype1) assert arr[0][0] == 'john' assert arr[0][1] == 4 |
