aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_handler_echo_body.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/http_handler_echo_body.erl')
-rw-r--r--test/http_handler_echo_body.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/http_handler_echo_body.erl b/test/http_handler_echo_body.erl
index e4b1ee0..31595d5 100644
--- a/test/http_handler_echo_body.erl
+++ b/test/http_handler_echo_body.erl
@@ -2,18 +2,18 @@
-module(http_handler_echo_body).
-behaviour(cowboy_http_handler).
--export([init/3, handle/2, terminate/2]).
+-export([init/3, handle/2, terminate/3]).
init({_, http}, Req, _) ->
{ok, Req, undefined}.
handle(Req, State) ->
- {true, Req1} = cowboy_req:has_body(Req),
- {ok, Body, Req2} = cowboy_req:body(Req1),
+ true = cowboy_req:has_body(Req),
+ {ok, Body, Req2} = cowboy_req:body(Req),
{Size, Req3} = cowboy_req:body_length(Req2),
Size = byte_size(Body),
{ok, Req4} = cowboy_req:reply(200, [], Body, Req3),
{ok, Req4, State}.
-terminate(_, _) ->
+terminate(_, _, _) ->
ok.