We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dceada commit 6051071Copy full SHA for 6051071
pandas/tests/io/parser/test_parse_dates.py
@@ -780,9 +780,7 @@ def test_nat_parse(all_parsers):
780
with tm.ensure_clean("__nat_parse_.csv") as path:
781
df.to_csv(path)
782
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"])
+ result = parser.read_csv(path, index_col=0, parse_dates=["B"])
786
tm.assert_frame_equal(result, df)
787
788
0 commit comments