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