Skip to content

Commit 8d193b4

Browse files
committed
Explicitly enable chunked encoding for test
1 parent 1c910df commit 8d193b4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/test_web_functional.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -889,6 +889,7 @@ def test_stream_response_multiple_chunks(self):
889889
@asyncio.coroutine
890890
def handler(request):
891891
resp = web.StreamResponse()
892+
resp.enable_chunked_encoding()
892893
resp.start(request)
893894
resp.write(b'x')
894895
resp.write(b'y')

0 commit comments

Comments
 (0)