aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-05-21 08:49:22 +0200
committerLoïc Hoguin <[email protected]>2012-05-21 08:49:22 +0200
commit8363e8995ad0b4f21b2a194c235ae7b92462af2e (patch)
treed75a4d0515d3df317c8ccafb710a23f94a7757d3 /test
parent4f78be6da615384d092093ef128535f00146e6f7 (diff)
downloadcowboy-8363e8995ad0b4f21b2a194c235ae7b92462af2e.tar.gz
cowboy-8363e8995ad0b4f21b2a194c235ae7b92462af2e.tar.bz2
cowboy-8363e8995ad0b4f21b2a194c235ae7b92462af2e.zip
Small updates to the ROADMAP and doc comments
Diffstat (limited to 'test')
-rw-r--r--test/http_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl
index 97caafe..029219a 100644
--- a/test/http_SUITE.erl
+++ b/test/http_SUITE.erl
@@ -134,7 +134,7 @@ init_per_group(http, Config) ->
Port = 33080,
Transport = cowboy_tcp_transport,
Config1 = init_static_dir(Config),
- cowboy:start_listener(http, 100,
+ {ok, _} = cowboy:start_listener(http, 100,
Transport, [{port, Port}],
cowboy_http_protocol, [
{dispatch, init_dispatch(Config1)},
@@ -156,7 +156,7 @@ init_per_group(https, Config) ->
application:start(crypto),
application:start(public_key),
application:start(ssl),
- {ok,_} = cowboy:start_listener(https, 100,
+ {ok, _} = cowboy:start_listener(https, 100,
Transport, Opts ++ [{port, Port}],
cowboy_http_protocol, [
{dispatch, init_dispatch(Config1)},