From d3dcaf109b225b1384fad5b17dbae9c4888c40ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 27 Aug 2012 13:28:57 +0200 Subject: Rename cowboy_http_req to cowboy_req --- test/http_handler_echo_body.erl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/http_handler_echo_body.erl') diff --git a/test/http_handler_echo_body.erl b/test/http_handler_echo_body.erl index b64ae7b..e4b1ee0 100644 --- a/test/http_handler_echo_body.erl +++ b/test/http_handler_echo_body.erl @@ -8,11 +8,11 @@ init({_, http}, Req, _) -> {ok, Req, undefined}. handle(Req, State) -> - {true, Req1} = cowboy_http_req:has_body(Req), - {ok, Body, Req2} = cowboy_http_req:body(Req1), - {Size, Req3} = cowboy_http_req:body_length(Req2), + {true, Req1} = cowboy_req:has_body(Req), + {ok, Body, Req2} = cowboy_req:body(Req1), + {Size, Req3} = cowboy_req:body_length(Req2), Size = byte_size(Body), - {ok, Req4} = cowboy_http_req:reply(200, [], Body, Req3), + {ok, Req4} = cowboy_req:reply(200, [], Body, Req3), {ok, Req4, State}. terminate(_, _) -> -- cgit v1.2.3