Skip to content

Commit 6051071

Browse files
committed
remove note about pyarrow
1 parent 4dceada commit 6051071

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/tests/io/parser/test_parse_dates.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -780,9 +780,7 @@ def test_nat_parse(all_parsers):
780780
with tm.ensure_clean("__nat_parse_.csv") as path:
781781
df.to_csv(path)
782782

783-
with tm.assert_produces_warning(None, raise_on_extra_warnings=False):
784-
# pyarrow raises, but not the others, need to figure out why
785-
result = parser.read_csv(path, index_col=0, parse_dates=["B"])
783+
result = parser.read_csv(path, index_col=0, parse_dates=["B"])
786784
tm.assert_frame_equal(result, df)
787785

788786

0 commit comments

Comments
 (0)