diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-30 06:08:06 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-30 06:08:06 +0000 |
commit | 858e4e923d08524f7339e53a713978f038cc0b2f (patch) | |
tree | 9f004a15a2edfb78b31b0dd1952ca26fa3d16514 /numpy | |
parent | 45b829bd7f13a859f3b3b13b4e4feba4fa2dd624 (diff) | |
download | numpy-858e4e923d08524f7339e53a713978f038cc0b2f.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 3c40fe677..16ed8c657 100644 --- a/numpy/core/tests/test_print.py +++ b/numpy/core/tests/test_print.py @@ -11,7 +11,7 @@ _REF = {np.inf: 'inf', -np.inf: '-inf', np.nan: 'nan', 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)' + np.cdouble(-np.inf, 1): '(-inf+1j)', np.clongdouble(np.inf, 1): '(inf+1j)', np.clongdouble(np.nan, 1): '(nan+1j)', np.clongdouble(-np.inf, 1): '(-inf+1j)' |