Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit 5bd9eb0

Browse files
committed
Minor refactor of test code
1 parent 765ee13 commit 5bd9eb0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/test_integration.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,12 @@ def socket_handler(listener):
467467
send_event.wait()
468468

469469
h = HeadersFrame(1)
470-
h.data = self.get_encoder().encode({':status': 200, 'Content-Type': 'not/real', 'Content-Length': 14, 'Server': 'socket-level-server'})
470+
h.data = self.get_encoder().encode(
471+
{':status': 200,
472+
'Content-Type': 'not/real',
473+
'Content-Length': 14,
474+
'Server': 'socket-level-server'}
475+
)
471476
h.flags.add('END_HEADERS')
472477
sock.send(h.serialize())
473478

0 commit comments

Comments
 (0)