From 6f536a143409af04888a3dad50927f9b950499e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=2E=20K=C3=A4rkk=C3=A4inen?= Date: Sat, 21 Mar 2020 07:00:27 -0700 Subject: [PATCH] Reduce amount of data in test_request_stream to avoid failures on Windows. --- tests/test_request_stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_request_stream.py b/tests/test_request_stream.py index b76e7248..75802ae0 100644 --- a/tests/test_request_stream.py +++ b/tests/test_request_stream.py @@ -8,7 +8,7 @@ from sanic.views import CompositionView, HTTPMethodView from sanic.views import stream as stream_decorator -data = "abc" * 10000000 +data = "abc" * 1_000_000 def test_request_stream_method_view(app):