(self)
| 108 | ) |
| 109 | |
| 110 | def test_long(self): |
| 111 | self.assertFrameData( |
| 112 | Frame(OP_BINARY, 126 * b"a"), |
| 113 | b"\x82\x7e\x00\x7e" + 126 * b"a", |
| 114 | mask=False, |
| 115 | ) |
| 116 | |
| 117 | def test_very_long(self): |
| 118 | self.assertFrameData( |
nothing calls this directly
no test coverage detected