()
| 561 | |
| 562 | |
| 563 | def test_nested_integer_narrowing_rejected(): |
| 564 | with pytest.raises(TypeNotCompatibleError): |
| 565 | compat_ser_de( |
| 566 | RemoteNestedWide, |
| 567 | LocalNestedNarrow, |
| 568 | RemoteNestedWide(values={1: [2, -3]}), |
| 569 | 703, |
| 570 | ) |
| 571 | |
| 572 | |
| 573 | def test_nested_signed_unsigned_rejected(): |
nothing calls this directly
no test coverage detected