We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77c8ee0 commit 39cd6d5Copy full SHA for 39cd6d5
pandas/tests/frame/test_to_csv.py
@@ -575,12 +575,6 @@ def test_to_csv_headers(self):
575
recons.reset_index(inplace=True)
576
tm.assert_frame_equal(to_df, recons)
577
578
- def test_read_csv_raises_on_header_prefix(self):
579
- # gh-27394
580
- msg = "Argument prefix must be None if argument header is not None"
581
- s = StringIO("0,1\n2,3")
582
- with pytest.raises(ValueError, match=msg):
583
- read_csv(s, header=0, prefix="_X")
584
585
def test_to_csv_multiindex(self, float_frame, datetime_frame):
586
pandas/tests/io/parser/test_common.py
@@ -25,7 +25,6 @@
25
concat,
26
read_csv,
27
)
28
-
29
import pandas._testing as tm
30
31
from pandas.io.parsers import CParserWrapper, TextFileReader, TextParser
0 commit comments