aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_handler_multipart.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/http_handler_multipart.erl')
-rw-r--r--test/http_handler_multipart.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/http_handler_multipart.erl b/test/http_handler_multipart.erl
index 773b61e..f5f7919 100644
--- a/test/http_handler_multipart.erl
+++ b/test/http_handler_multipart.erl
@@ -10,7 +10,7 @@ init({_Transport, http}, Req, []) ->
handle(Req, State) ->
{Result, Req2} = acc_multipart(Req, []),
{ok, Req3} = cowboy_http_req:reply(200, [], term_to_binary(Result), Req2),
- {ok, Req, State}.
+ {ok, Req3, State}.
terminate(_Req, _State) ->
ok.