diff options
Diffstat (limited to 'test/handlers')
-rw-r--r-- | test/handlers/resp_h.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/handlers/resp_h.erl b/test/handlers/resp_h.erl index 5e6696e..694f04a 100644 --- a/test/handlers/resp_h.erl +++ b/test/handlers/resp_h.erl @@ -20,7 +20,8 @@ do(<<"set_resp_cookie3">>, Req0, Opts) -> end, {ok, cowboy_req:reply(200, #{}, "OK", Req), Opts}; do(<<"set_resp_cookie4">>, Req0, Opts) -> - Req = cowboy_req:set_resp_cookie(<<"mycookie">>, "myvalue", #{path => cowboy_req:path(Req0)}, Req0), + Req = cowboy_req:set_resp_cookie(<<"mycookie">>, "myvalue", Req0, + #{path => cowboy_req:path(Req0)}), {ok, cowboy_req:reply(200, #{}, "OK", Req), Opts}; do(<<"set_resp_header">>, Req0, Opts) -> Req = cowboy_req:set_resp_header(<<"content-type">>, <<"text/plain">>, Req0), |