(self)
| 29 | self.assertCountEqual(make_hashable(value), expected) |
| 30 | |
| 31 | def test_unhashable(self): |
| 32 | class Unhashable: |
| 33 | __hash__ = None |
| 34 | |
| 35 | with self.assertRaisesMessage(TypeError, "unhashable type: 'Unhashable'"): |
| 36 | make_hashable(Unhashable()) |
nothing calls this directly
no test coverage detected