(self)
| 2614 | self._test_error(data + b"\0" * 13) |
| 2615 | |
| 2616 | def test_invalid(self): |
| 2617 | self._test_error(b"a" * 512) |
| 2618 | |
| 2619 | class GzipAppendTest(GzipTest, AppendTestBase, unittest.TestCase): |
| 2620 | pass |
nothing calls this directly
no test coverage detected