Skip to content

Commit

Permalink
remove faulty test case
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Sep 23, 2024
1 parent 19b52cb commit fbb5894
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions py-polars/tests/unit/datatypes/test_struct.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit fbb5894

Please sign in to comment.