diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2019-12-06 10:11:08 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-06 10:11:08 -0600 |
commit | abde0a775e19b9f84cb3930f065cdf07f94f8526 (patch) | |
tree | f6f754203e97d22434a9ecbec97932b138a53a90 /numpy/lib | |
parent | 06055023f5db69a31d636d5adbf3b8595cfe2771 (diff) | |
parent | 80cf9fd93f2c1e361b8650c0eba96d21d4a588bc (diff) | |
download | numpy-abde0a775e19b9f84cb3930f065cdf07f94f8526.tar.gz |
Merge pull request #15052 from pv/blas64-fixup
MAINT: follow-up cleanup for blas64 PR
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/tests/test_io.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py index 4188265e8..39fe40685 100644 --- a/numpy/lib/tests/test_io.py +++ b/numpy/lib/tests/test_io.py @@ -576,7 +576,7 @@ class TestSaveTxt(object): @pytest.mark.skipif(sys.platform=='win32', reason="large files cause problems") @pytest.mark.slow - @requires_memory(7e9) + @requires_memory(free_bytes=7e9) def test_large_zip(self): # The test takes at least 6GB of memory, writes a file larger than 4GB test_data = np.asarray([np.random.rand(np.random.randint(50,100),4) |