Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Oct 15, 2024
1 parent 7e54abe commit 466986f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions py-polars/tests/unit/io/test_lazy_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,12 +235,12 @@ def test_parquet_is_in_statistics(monkeypatch: Any, capfd: Any, tmp_path: Path)

captured = capfd.readouterr().err
assert (
"parquet file must be read, statistics not sufficient for predicate."
"parquet row group must be read, statistics not sufficient for predicate."
in captured
)
assert (
"parquet file can be skipped, the statistics were sufficient"
" to apply the predicate." in captured
"parquet row group can be skipped, the statistics were sufficient to apply the predicate."
in captured
)


Expand Down

0 comments on commit 466986f

Please sign in to comment.