summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_io.py
diff options
context:
space:
mode:
authorChris Jordan-Squire <cjordan1@uw.edu>2011-09-01 15:14:05 -0500
committerCharles Harris <charlesr.harris@gmail.com>2011-12-16 20:35:44 -0700
commit8b6c850cf3e6ec664705e9823014e59edc1a26e7 (patch)
treed9e0a95456fffbf978da84edd83ea11b13f69a22 /numpy/lib/tests/test_io.py
parent3d0b348450addcc33bd30e9c0b3ea5b10106ab4d (diff)
downloadnumpy-8b6c850cf3e6ec664705e9823014e59edc1a26e7.tar.gz
ENH: New sample function, bugs in tests fixed
Diffstat (limited to 'numpy/lib/tests/test_io.py')
-rw-r--r--numpy/lib/tests/test_io.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py
index 54c2ddabb..6d6b10c0c 100644
--- a/numpy/lib/tests/test_io.py
+++ b/numpy/lib/tests/test_io.py
@@ -1406,7 +1406,7 @@ M 33 21.99
def test_gzip_load():
- a = np.random.random((5, 5))
+ a = np.random.random_sample((5, 5))
s = StringIO()
f = gzip.GzipFile(fileobj=s, mode="w")