mirror of
https://github.com/django/daphne.git
synced 2024-11-21 15:36:33 +03:00
Don't put commas in the header hypothesis tests
This commit is contained in:
parent
12437e2677
commit
f53eb0dda6
|
@ -115,7 +115,7 @@ def header_value():
|
|||
https://en.wikipedia.org/wiki/List_of_HTTP_header_fields
|
||||
"""
|
||||
return strategies.text(
|
||||
alphabet=string.ascii_letters + string.digits + string.punctuation + " /t",
|
||||
alphabet=string.ascii_letters + string.digits + string.punctuation.replace(",", "") + " /t",
|
||||
min_size=1,
|
||||
average_size=40,
|
||||
max_size=8190,
|
||||
|
|
Loading…
Reference in New Issue
Block a user