diff options
author | Mike Taves <mwtoews@gmail.com> | 2021-09-02 21:32:21 +1200 |
---|---|---|
committer | Mike Taves <mwtoews@gmail.com> | 2021-09-02 22:56:43 +1200 |
commit | 7ad8ea7b11e3544b133d8b397dd3bbe4833d3308 (patch) | |
tree | 8726a71692b20b079cec53e76f5c1fb33c806d7b /numpy/lib/tests/test__datasource.py | |
parent | 9fca8f0c1a3f16f8f62ae574ec1a79b5b588214e (diff) | |
download | numpy-7ad8ea7b11e3544b133d8b397dd3bbe4833d3308.tar.gz |
MAINT: revise OSError aliases (IOError, EnvironmentError)
Diffstat (limited to 'numpy/lib/tests/test__datasource.py')
-rw-r--r-- | numpy/lib/tests/test__datasource.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/tests/test__datasource.py b/numpy/lib/tests/test__datasource.py index 1ed7815d9..2738d41c4 100644 --- a/numpy/lib/tests/test__datasource.py +++ b/numpy/lib/tests/test__datasource.py @@ -102,10 +102,10 @@ class TestDataSourceOpen: def test_InvalidHTTP(self): url = invalid_httpurl() - assert_raises(IOError, self.ds.open, url) + assert_raises(OSError, self.ds.open, url) try: self.ds.open(url) - except IOError as e: + except OSError as e: # Regression test for bug fixed in r4342. assert_(e.errno is None) @@ -120,7 +120,7 @@ class TestDataSourceOpen: def test_InvalidFile(self): invalid_file = invalid_textfile(self.tmpdir) - assert_raises(IOError, self.ds.open, invalid_file) + assert_raises(OSError, self.ds.open, invalid_file) def test_ValidGzipFile(self): try: |