mirror of https://github.com/scrapy/scrapy.git
Speed up test_POST_large_json_x10 with a smaller JSON (#7859)
This commit is contained in:
parent
a22523bfd3
commit
fc226e6642
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue