We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e166a0 commit 265a0fcCopy full SHA for 265a0fc
1 file changed
test/test_hyper.py
@@ -375,9 +375,10 @@ def test_headers_with_continuation(self):
375
)
376
h = HeadersFrame(1)
377
h.data = header_data[0:int(len(header_data)/2)]
378
+ h.flags.add('END_STREAM')
379
c = ContinuationFrame(1)
380
c.data = header_data[int(len(header_data)/2):]
- c.flags |= set(['END_HEADERS', 'END_STREAM'])
381
+ c.flags.add('END_HEADERS')
382
sock = DummySocket()
383
sock.buffer = BytesIO(h.serialize() + c.serialize())
384
0 commit comments