Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
FBruzzesi committed Sep 10, 2024
1 parent 83af326 commit 210113b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/frame/filter_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def test_filter_with_boolean_list(constructor: Any) -> None:

context = (
pytest.raises(
NotImplementedError, match="Filtering with boolean mask is not supported"
NotImplementedError,
match="`LazyFrame.filter` is not supported for Dask backend with boolean masks.",
)
if "dask" in str(constructor)
else does_not_raise()
Expand Down

0 comments on commit 210113b

Please sign in to comment.