diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-30 05:15:09 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-30 05:15:09 +0000 |
commit | 90ebbb8e4e37c2d6562735a5192d3116de2621ac (patch) | |
tree | 3693225e4e9552dda947af2554c3df26bc8ba04b /numpy | |
parent | a4a94b1be5a8d195b0651ad1411b5c1a61cf54eb (diff) | |
download | numpy-90ebbb8e4e37c2d6562735a5192d3116de2621ac.tar.gz |
Fix typo in test.
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 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: |