From 2ff500e137e7ff50d52fe0d631570ab481fb4bd3 Mon Sep 17 00:00:00 2001 From: Marco Edward Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Mon, 13 Feb 2023 16:06:57 +0000 Subject: [PATCH] chore(python): un-skip passing test (#6854) Co-authored-by: MarcoGorelli <> --- py-polars/tests/unit/io/test_csv.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/py-polars/tests/unit/io/test_csv.py b/py-polars/tests/unit/io/test_csv.py index 4f88725f2943..c66331ff6c10 100644 --- a/py-polars/tests/unit/io/test_csv.py +++ b/py-polars/tests/unit/io/test_csv.py @@ -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]})