Skip to content

Commit 79de61c

Browse files
committed
remove unsupported test
1 parent d89790c commit 79de61c

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

pandas/io/tests/parser/test_unsupported.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,6 @@ def test_c_engine(self):
4444
data = 'a b c\n1 2 3'
4545
msg = 'does not support'
4646

47-
# specify C-unsupported options with python-unsupported option
48-
# (options will be ignored on fallback, raise)
49-
with tm.assertRaisesRegexp(ValueError, msg):
50-
read_table(StringIO(data), sep=None,
51-
delim_whitespace=False, dtype={'a': float})
52-
with tm.assertRaisesRegexp(ValueError, msg):
53-
read_table(StringIO(data), sep='\s', dtype={'a': float})
54-
with tm.assertRaisesRegexp(ValueError, msg):
55-
read_table(StringIO(data), skipfooter=1, dtype={'a': float})
56-
5747
# specify C engine with unsupported options (raise)
5848
with tm.assertRaisesRegexp(ValueError, msg):
5949
read_table(StringIO(data), engine='c',

0 commit comments

Comments
 (0)