@@ -195,7 +195,7 @@ def test_iterator(self):
195
195
(pd .read_csv , "os" , FileNotFoundError , "csv" ),
196
196
(pd .read_fwf , "os" , FileNotFoundError , "txt" ),
197
197
(pd .read_excel , "xlrd" , FileNotFoundError , "xlsx" ),
198
- (pd .read_feather , "pyarrow" , IOError , "feather" ),
198
+ (pd .read_feather , "pyarrow" , OSError , "feather" ),
199
199
(pd .read_hdf , "tables" , FileNotFoundError , "h5" ),
200
200
(pd .read_stata , "os" , FileNotFoundError , "dta" ),
201
201
(pd .read_sas , "os" , FileNotFoundError , "sas7bdat" ),
@@ -234,7 +234,7 @@ def test_read_non_existent(self, reader, module, error_class, fn_ext):
234
234
(pd .read_table , "os" , FileNotFoundError , "csv" ),
235
235
(pd .read_fwf , "os" , FileNotFoundError , "txt" ),
236
236
(pd .read_excel , "xlrd" , FileNotFoundError , "xlsx" ),
237
- (pd .read_feather , "pyarrow" , IOError , "feather" ),
237
+ (pd .read_feather , "pyarrow" , OSError , "feather" ),
238
238
(pd .read_hdf , "tables" , FileNotFoundError , "h5" ),
239
239
(pd .read_stata , "os" , FileNotFoundError , "dta" ),
240
240
(pd .read_sas , "os" , FileNotFoundError , "sas7bdat" ),
0 commit comments