summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-12-30 06:08:15 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-12-30 06:08:15 +0000
commite0114e352ce3637ed1a6702c96da6a8441000a3a (patch)
treee742e6727c760436e9242935463c6934590d05f9 /numpy
parent27b0df0424f062c9d944fede7977640fb5a2fced (diff)
parent45b829bd7f13a859f3b3b13b4e4feba4fa2dd624 (diff)
downloadnumpy-e0114e352ce3637ed1a6702c96da6a8441000a3a.tar.gz
Merged revisions 6265 via svnmerge from
http://svn.scipy.org/svn/numpy/trunk ........ r6265 | cdavid | 2008-12-30 15:03:56 +0900 (Tue, 30 Dec 2008) | 1 line Fix typo. ........
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/tests/test_print.py2
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)'