From 3dfcc4605dfc73b95dbae69c0f42a2b804bfb4fc Mon Sep 17 00:00:00 2001 From: alexander-beedie Date: Sun, 22 Oct 2023 01:46:39 +0400 Subject: [PATCH] better test name --- py-polars/tests/unit/test_predicates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/tests/unit/test_predicates.py b/py-polars/tests/unit/test_predicates.py index 6d6f2947de466..e00ad9effc8f0 100644 --- a/py-polars/tests/unit/test_predicates.py +++ b/py-polars/tests/unit/test_predicates.py @@ -218,7 +218,7 @@ def test_no_predicate_push_down_with_cast_and_alias_11883() -> None: None, ], ) -def test_invalid_predicates(predicate: Any) -> None: +def test_invalid_filter_predicates(predicate: Any) -> None: df = pl.DataFrame({"colx": ["aa", "bb", "cc", "dd"]}) with pytest.raises(ValueError, match="Invalid predicate"): df.filter(predicate)