Skip to content

Commit

Permalink
chore(python): un-skip passing test (#6854)
Browse files Browse the repository at this point in the history
Co-authored-by: MarcoGorelli <>
  • Loading branch information
MarcoGorelli committed Feb 13, 2023
1 parent 352318e commit 2ff500e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions py-polars/tests/unit/io/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ def foods_file_path(io_files_path: Path) -> Path:
return io_files_path / "foods1.csv"


@pytest.mark.skip("Needs fix: https://github.com/pola-rs/polars/issues/6474")
def test_quoted_date() -> None:
csv = textwrap.dedent(
"""a,b
"2022-01-01",1
"2022-01-02",2
"""
"""\
a,b
"2022-01-01",1
"2022-01-02",2
"""
)
result = pl.read_csv(csv.encode(), parse_dates=True)
expected = pl.DataFrame({"a": [date(2022, 1, 1), date(2022, 1, 2)], "b": [1, 2]})
Expand Down

0 comments on commit 2ff500e

Please sign in to comment.