From fc226e66423dcccd3e25f1a80f7bf1b99b38fef8 Mon Sep 17 00:00:00 2001 From: Adrian Date: Fri, 14 Aug 2026 11:23:00 +0200 Subject: [PATCH] Speed up test_POST_large_json_x10 with a smaller JSON (#7859) --- tests/test_http2_client_protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_http2_client_protocol.py b/tests/test_http2_client_protocol.py index 075f1acb9..e96a5484e 100644 --- a/tests/test_http2_client_protocol.py +++ b/tests/test_http2_client_protocol.py @@ -76,7 +76,7 @@ class Data: STR_LARGE = generate_random_string(LARGE_SIZE) EXTRA_SMALL = generate_random_string(1024 * 15) - EXTRA_LARGE = generate_random_string((1024**2) * 15) + EXTRA_LARGE = generate_random_string(LARGE_SIZE) HTML_SMALL = make_html_body(STR_SMALL) HTML_LARGE = make_html_body(STR_LARGE)