()
| 571 | |
| 572 | |
| 573 | def test_nested_signed_unsigned_rejected(): |
| 574 | with pytest.raises(TypeNotCompatibleError): |
| 575 | compat_ser_de( |
| 576 | RemoteNestedUnsigned, |
| 577 | LocalNestedSignedDefault, |
| 578 | RemoteNestedUnsigned(values={1: [2]}), |
| 579 | 705, |
| 580 | ) |
| 581 | |
| 582 | |
| 583 | def test_nested_nullable_scalar_compatible(): |
nothing calls this directly
no test coverage detected