From fbb5894013f87bb94c3a9f97b4f8f3540efbde9b Mon Sep 17 00:00:00 2001 From: coastalwhite Date: Mon, 23 Sep 2024 08:56:29 +0200 Subject: [PATCH] remove faulty test case --- py-polars/tests/unit/datatypes/test_struct.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/py-polars/tests/unit/datatypes/test_struct.py b/py-polars/tests/unit/datatypes/test_struct.py index 6489a83e5a6b..922b3776ba05 100644 --- a/py-polars/tests/unit/datatypes/test_struct.py +++ b/py-polars/tests/unit/datatypes/test_struct.py @@ -66,11 +66,6 @@ def test_struct_equality() -> None: assert (s5 != s6).all() assert (~(s5 == s6)).all() - s7 = pl.Series("misc", [{"x": "a", "y": 0}, {"x": "b", "y": 0}]) - s8 = pl.Series("misc", [{"x": "a", "y": 0}, {"x": "b", "y": 0}, {"x": "c", "y": 0}]) - assert (s7 != s8).all() - assert (~(s7 == s8)).all() - def test_struct_equality_strict() -> None: s1 = pl.Struct(