From c0a0c9310312b8832a1d3cbf5f483a30736a70f3 Mon Sep 17 00:00:00 2001 From: MarcoGorelli <> Date: Mon, 13 Feb 2023 14:57:43 +0000 Subject: [PATCH] unskip passing test --- py-polars/tests/unit/io/test_csv.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/py-polars/tests/unit/io/test_csv.py b/py-polars/tests/unit/io/test_csv.py index 4f88725f29439..eefa1792e673b 100644 --- a/py-polars/tests/unit/io/test_csv.py +++ b/py-polars/tests/unit/io/test_csv.py @@ -27,13 +27,12 @@ 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]})