diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-30 06:03:56 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-30 06:03:56 +0000 |
commit | 45b829bd7f13a859f3b3b13b4e4feba4fa2dd624 (patch) | |
tree | adf1ed717c3e1dafcf59804a51a557b395d073d5 /numpy | |
parent | ddf0d0dee18eab8c8e30f9809c38fa641b9afaa8 (diff) | |
download | numpy-45b829bd7f13a859f3b3b13b4e4feba4fa2dd624.tar.gz |
Fix typo.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/tests/test_print.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_print.py b/numpy/core/tests/test_print.py index d18b63897..3c40fe677 100644 --- a/numpy/core/tests/test_print.py +++ b/numpy/core/tests/test_print.py @@ -8,7 +8,7 @@ from StringIO import StringIO _REF = {np.inf: 'inf', -np.inf: '-inf', np.nan: 'nan', np.complex64(np.inf, 1): '(inf+1j)', np.complex64(np.nan, 1): '(nan+1j)', - np.complex64(-np.inf, 1): '(-inf+1j)' + np.complex64(-np.inf, 1): '(-inf+1j)', np.cdouble(np.inf, 1): '(inf+1j)', np.cdouble(np.nan, 1): '(nan+1j)', np.cdouble(-np.inf, 1): '(-inf+1j)' |