Skip to content

Commit

Permalink
🐛🧪 Fix the operator in test_lt
Browse files Browse the repository at this point in the history
It was incorrectly testing the `<=` twice which resulted in missing
coverage for `<` in the Cython module.
  • Loading branch information
webknjaz committed Dec 15, 2023
1 parent 01720b2 commit 59b9a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_frozenlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def test_le(self) -> None:

def test_lt(self) -> None:
_list = self.FrozenList([1])
assert _list <= [3]
assert _list < [3]

def test_ge(self) -> None:
_list = self.FrozenList([1])
Expand Down

0 comments on commit 59b9a74

Please sign in to comment.