summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-12-30 05:15:09 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-12-30 05:15:09 +0000
commit90ebbb8e4e37c2d6562735a5192d3116de2621ac (patch)
tree3693225e4e9552dda947af2554c3df26bc8ba04b /numpy
parenta4a94b1be5a8d195b0651ad1411b5c1a61cf54eb (diff)
downloadnumpy-90ebbb8e4e37c2d6562735a5192d3116de2621ac.tar.gz
Fix typo in test.
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 47d841a68..fe78ddf0c 100644
--- a/numpy/core/tests/test_print.py
+++ b/numpy/core/tests/test_print.py
@@ -88,7 +88,7 @@ def _test_redirected_print(x, tp):
err_msg='print failed for type%s' % tp)
def check_float_type_print(tp):
- for x in [0, 1,-1, 1e20, np.inf, -np.inf, np.nan]
+ for x in [0, 1,-1, 1e20, np.inf, -np.inf, np.nan]:
_test_redirected_print(float(x), tp)
if tp(1e10).itemsize > 4: