From 699c4ffce8f6e331aa46190fbaebe7fa7229ac6c Mon Sep 17 00:00:00 2001 From: Ion Koutsouris <15728914+ion-elgreco@users.noreply.github.com> Date: Fri, 4 Oct 2024 18:18:22 +0200 Subject: [PATCH] chore: remove rechunk --- py-polars/tests/unit/io/test_delta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/tests/unit/io/test_delta.py b/py-polars/tests/unit/io/test_delta.py index 99c80589b81a..da4d58deaa05 100644 --- a/py-polars/tests/unit/io/test_delta.py +++ b/py-polars/tests/unit/io/test_delta.py @@ -490,5 +490,5 @@ def test_read_parquet_respects_rechunk_16982( df.write_delta(str(tmp_path), mode="append") rechunk, expected_chunks = rechunk_and_expected_chunks - result = pl.read_delta(str(tmp_path), rechunk=rechunk) + result = pl.read_delta(str(tmp_path)) assert result.n_chunks() == expected_chunks