From f53eb0dda6161c9fca78c8a89a1d94c7b613b1d4 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 7 Feb 2018 14:15:28 -0800 Subject: [PATCH] Don't put commas in the header hypothesis tests --- tests/http_strategies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/http_strategies.py b/tests/http_strategies.py index f5a79d7..4335afd 100644 --- a/tests/http_strategies.py +++ b/tests/http_strategies.py @@ -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,