aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-01-19 17:20:35 +0100
committerLoïc Hoguin <[email protected]>2013-01-19 17:20:35 +0100
commit82de4254ddeff748c28c2086f43fb0d73015932f (patch)
tree6bcf196fc56a78cbfb021c6067dcc73b4e87277d /test
parent645556a80ac1f906a995b107df762756cd105324 (diff)
downloadcowboy-82de4254ddeff748c28c2086f43fb0d73015932f.tar.gz
cowboy-82de4254ddeff748c28c2086f43fb0d73015932f.tar.bz2
cowboy-82de4254ddeff748c28c2086f43fb0d73015932f.zip
Make cowboy_req:has_body/1 return boolean()
This makes it similar to the other has_* functions.
Diffstat (limited to 'test')
-rw-r--r--test/http_handler_echo_body.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/http_handler_echo_body.erl b/test/http_handler_echo_body.erl
index e4b1ee0..37c2072 100644
--- a/test/http_handler_echo_body.erl
+++ b/test/http_handler_echo_body.erl
@@ -8,8 +8,8 @@ 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),