Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down