Skip to content

Commit

Permalink
Trying to fix the windows test.
Browse files Browse the repository at this point in the history
  • Loading branch information
svaningelgem committed Oct 9, 2023
1 parent 07f004b commit 8489ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/streaming/test_streaming_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_sink_parquet(io_files_path: Path, tmp_path: Path) -> None:
def test_sink_parquet_cloud(io_files_path: Path, tmp_path: Path) -> None:
source = io_files_path / "small.parquet"
sink_file = tmp_path / "sink.parquet"
target = f"file://{sink_file}"
target = f"file://{sink_file.absolute().as_posix()}"

df_scanned = pl.scan_parquet(source)
df_scanned.sink_parquet_cloud(target)
Expand Down

0 comments on commit 8489ca0

Please sign in to comment.