Reduce amount of data in test_request_stream to avoid failures on Windows.

This commit is contained in:
L. Kärkkäinen 2020-03-21 07:00:27 -07:00
parent 60b4efad67
commit 6f536a1434

View File

@ -8,7 +8,7 @@ from sanic.views import CompositionView, HTTPMethodView
from sanic.views import stream as stream_decorator from sanic.views import stream as stream_decorator
data = "abc" * 10000000 data = "abc" * 1_000_000
def test_request_stream_method_view(app): def test_request_stream_method_view(app):