(self, *, sdk_version: int)
| 1738 | """Mock BaseChunk that raises on serialization.""" |
| 1739 | |
| 1740 | def encode(self, *, sdk_version: int) -> str: |
| 1741 | del sdk_version |
| 1742 | raise ValueError("Serialization error") |
| 1743 | |
| 1744 | |
| 1745 | @pytest.mark.skipif( |
no outgoing calls
no test coverage detected