(a, b)
| 1654 | |
| 1655 | @staticmethod |
| 1656 | def assert_neq(a, b): |
| 1657 | assert a != b |
| 1658 | assert not a == b |
| 1659 | |
| 1660 | def test_order_no_eq_errors(self): |
| 1661 | with pytest.raises(ValueError, match="Cannot set eq=False and order=True"): |
no outgoing calls
no test coverage detected