File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -44,16 +44,6 @@ def test_c_engine(self):
44
44
data = 'a b c\n 1 2 3'
45
45
msg = 'does not support'
46
46
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
-
57
47
# specify C engine with unsupported options (raise)
58
48
with tm .assertRaisesRegexp (ValueError , msg ):
59
49
read_table (StringIO (data ), engine = 'c' ,
You can’t perform that action at this time.
0 commit comments