(self)
| 43 | self.assertEqual(x, y) |
| 44 | |
| 45 | def test_bools(self): |
| 46 | self.check_equal_hash(False, 0) |
| 47 | self.check_equal_hash(True, 1) |
| 48 | |
| 49 | def test_integers(self): |
| 50 | # check that equal values hash equal |
nothing calls this directly
no test coverage detected