()
| 103 | |
| 104 | |
| 105 | def test_nan_payloads_hash_equal() -> None: |
| 106 | nan1 = _make_nan_from_payload(0x1) |
| 107 | nan2 = _make_nan_from_payload(0x2) |
| 108 | assert math.isnan(nan1) and math.isnan(nan2) |
| 109 | assert RecursiveHash(nan1) == RecursiveHash(nan2) |
| 110 | |
| 111 | |
| 112 | def test_nan_payloads_in_nested_array_hash() -> None: |
nothing calls this directly
no test coverage detected