aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data/http_stream_body.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/http_SUITE_data/http_stream_body.erl')
-rw-r--r--test/http_SUITE_data/http_stream_body.erl3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/http_SUITE_data/http_stream_body.erl b/test/http_SUITE_data/http_stream_body.erl
index d896797..9be79a1 100644
--- a/test/http_SUITE_data/http_stream_body.erl
+++ b/test/http_SUITE_data/http_stream_body.erl
@@ -25,8 +25,7 @@ handle(Req, State=#state{headers=_Headers, body=Body, reply=Reply}) ->
SFun2 = fun(SendFun) -> lists:foreach(SendFun, Body) end,
cowboy_req:set_resp_body_fun(chunked, SFun2, Req)
end,
- {ok, Req3} = cowboy_req:reply(200, Req2),
- {ok, Req3, State}.
+ {ok, cowboy_req:reply(200, Req2), State}.
terminate(_, _, _) ->
ok.