aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-04-11 14:34:35 +0200
committerLoïc Hoguin <[email protected]>2014-04-11 14:34:35 +0200
commit71b8316b0df197928a80ff6722eb326ab3b7699b (patch)
tree7e53e3665ef76802a42e9608b07e6e338250a593 /test
parent05024529679d1d0203b8dcd6e2932cc2a526d370 (diff)
downloadcowboy-71b8316b0df197928a80ff6722eb326ab3b7699b.tar.gz
cowboy-71b8316b0df197928a80ff6722eb326ab3b7699b.tar.bz2
cowboy-71b8316b0df197928a80ff6722eb326ab3b7699b.zip
Fix application start order in tests, gun depends on cowlib
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 9af02cf..4b93c67 100644
--- a/test/http_SUITE.erl
+++ b/test/http_SUITE.erl
@@ -128,8 +128,8 @@ init_per_suite(Config) ->
application:start(public_key),
application:start(ssl),
application:start(ranch),
- application:start(gun),
application:start(cowlib),
+ application:start(gun),
application:start(cowboy),
Dir = ?config(priv_dir, Config) ++ "/static",
ct_helper:create_static_dir(Dir),
@@ -139,8 +139,8 @@ end_per_suite(Config) ->
Dir = ?config(static_dir, Config),
ct_helper:delete_static_dir(Dir),
application:stop(cowboy),
- application:stop(cowlib),
application:stop(gun),
+ application:stop(cowlib),
application:stop(ranch),
application:stop(ssl),
application:stop(public_key),