(self)
| 2631 | self._test_error(data + b"\0" * 13) |
| 2632 | |
| 2633 | def test_invalid(self): |
| 2634 | self._test_error(b"a" * 512) |
| 2635 | |
| 2636 | class GzipAppendTest(GzipTest, AppendTestBase, unittest.TestCase): |
| 2637 | pass |
nothing calls this directly
no test coverage detected