Skip to content

Commit 39cd6d5

Browse files
committed
sort imports
1 parent 77c8ee0 commit 39cd6d5

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

pandas/tests/frame/test_to_csv.py

-6
Original file line numberDiff line numberDiff line change
@@ -575,12 +575,6 @@ def test_to_csv_headers(self):
575575
recons.reset_index(inplace=True)
576576
tm.assert_frame_equal(to_df, recons)
577577

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")
584578

585579
def test_to_csv_multiindex(self, float_frame, datetime_frame):
586580

pandas/tests/io/parser/test_common.py

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
concat,
2626
read_csv,
2727
)
28-
2928
import pandas._testing as tm
3029

3130
from pandas.io.parsers import CParserWrapper, TextFileReader, TextParser

0 commit comments

Comments
 (0)