diff --git a/property_tests/arbitraries/http/headers_arb.ts b/property_tests/arbitraries/http/headers_arb.ts index e1fedeef9c..87a7f93685 100644 --- a/property_tests/arbitraries/http/headers_arb.ts +++ b/property_tests/arbitraries/http/headers_arb.ts @@ -6,7 +6,7 @@ export function HttpHeadersArb() { const HeaderNameArb = fc.stringMatching(/^[a-zA-Z0-9_-]+$/); const HeaderValueArb = fc - .stringMatching(/^[a-zA-Z0-9_ :;.,\/"'?!(){}[\]@<>=\-+*#$&`|~^%]+$/) + .stringMatching(/^[a-zA-Z0-9_ .'!-+*#$&`|~^%]+$/) .map((value) => value.trim()); const HeaderArb = fc.tuple(HeaderNameArb, HeaderValueArb);