summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-12-30 06:12:51 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-12-30 06:12:51 +0000
commit778d33648daeda86be016c1c6a490a2fb5387b1d (patch)
tree40593dbadf9bd4af3bbe276bad7d6814bdd1c526
parente0114e352ce3637ed1a6702c96da6a8441000a3a (diff)
parent858e4e923d08524f7339e53a713978f038cc0b2f (diff)
downloadnumpy-778d33648daeda86be016c1c6a490a2fb5387b1d.tar.gz
Merged revisions 6266 via svnmerge from
http://svn.scipy.org/svn/numpy/trunk ........ r6266 | cdavid | 2008-12-30 15:08:06 +0900 (Tue, 30 Dec 2008) | 1 line Fix typo. ........
-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 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)'