Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Oct 21, 2024
1 parent 6b08139 commit de9874d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/io/test_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ def test_scan_double_collect_row_index_invalidates_cached_ir_18892() -> None:


def test_scan_include_file_paths_respects_projection_pushdown() -> None:
q = pl.scan_csv("a,b,c\na1,b1,c1".encode(), include_file_paths="path_name").select(
q = pl.scan_csv(b"a,b,c\na1,b1,c1", include_file_paths="path_name").select(
["a", "b"]
)

Expand Down

0 comments on commit de9874d

Please sign in to comment.