diff options
-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)' |