diff --git a/tests/gold_tests/pluginTest/cache_range_requests/cache_range_requests_cache_complete_responses.test.py b/tests/gold_tests/pluginTest/cache_range_requests/cache_range_requests_cache_complete_responses.test.py index 12256b889d9..38686e9358f 100644 --- a/tests/gold_tests/pluginTest/cache_range_requests/cache_range_requests_cache_complete_responses.test.py +++ b/tests/gold_tests/pluginTest/cache_range_requests/cache_range_requests_cache_complete_responses.test.py @@ -49,14 +49,10 @@ # Generate bodies for our responses small_body_len = 10000 -small_body = '' -for i in range(small_body_len): - small_body += 'x' +small_body = 'x' * small_body_len slice_body_len = 4 * 1024 * 1024 -slice_body = '' -for i in range(slice_body_len): - slice_body += 'x' +slice_body = 'x' * slice_body_len # Define and configure ATS ts = Test.MakeATSProcess("ts")