aboutsummaryrefslogtreecommitdiffstats
path: root/test/chunked_handler.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/chunked_handler.erl')
-rw-r--r--test/chunked_handler.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/chunked_handler.erl b/test/chunked_handler.erl
index 97ce27c..d246d51 100644
--- a/test/chunked_handler.erl
+++ b/test/chunked_handler.erl
@@ -8,7 +8,7 @@ init({_Transport, http}, Req, _Opts) ->
{ok, Req, undefined}.
handle(Req, State) ->
- {ok, Req2} = cowboy_http_req:chunked_reply(200, [], Req),
+ {ok, Req2} = cowboy_http_req:chunked_reply(200, Req),
cowboy_http_req:chunk("chunked_handler\r\n", Req2),
cowboy_http_req:chunk("works fine!", Req2),
{ok, Req2, State}.