aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/req_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/req_SUITE.erl b/test/req_SUITE.erl
index d50b2ff..f71883f 100644
--- a/test/req_SUITE.erl
+++ b/test/req_SUITE.erl
@@ -281,7 +281,7 @@ parse_cookies(Config) ->
[{<<"cookie">>, "cake=strawberry"}, {<<"cookie">>, "color=blue"}], Config),
%% Ensure parse errors result in a 400 response.
{400, _, _} = do_get("/parse_cookies",
- [{<<"cookie">>, "bad name=strawberry"}], Config),
+ [{<<"cookie">>, "bad\tname=strawberry"}], Config),
{400, _, _} = do_get("/parse_cookies",
[{<<"cookie">>, "goodname=strawberry\tmilkshake"}], Config),
ok.