()
| 551 | |
| 552 | |
| 553 | def test_nested_integer_encoding_rejected(): |
| 554 | with pytest.raises(TypeNotCompatibleError): |
| 555 | compat_ser_de( |
| 556 | RemoteNestedFixedTagged, |
| 557 | LocalNestedVarint, |
| 558 | RemoteNestedFixedTagged(values={1: [2, -3], -4: [5]}), |
| 559 | 702, |
| 560 | ) |
| 561 | |
| 562 | |
| 563 | def test_nested_integer_narrowing_rejected(): |
nothing calls this directly
no test coverage detected