(self)
| 1983 | self.check_set_op_does_not_crash(lambda a, b: a < b) |
| 1984 | |
| 1985 | def test_le_with_mutation(self): |
| 1986 | self.check_set_op_does_not_crash(lambda a, b: a <= b) |
| 1987 | |
| 1988 | def test_gt_with_mutation(self): |
| 1989 | self.check_set_op_does_not_crash(lambda a, b: a > b) |
nothing calls this directly
no test coverage detected