Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix application start order in tests, gun depends on cowlib
  • Loading branch information
essen committed Apr 11, 2014
1 parent 0502452 commit 71b8316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/http_SUITE.erl
Expand Up @@ -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),
Expand All @@ -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),
Expand Down

0 comments on commit 71b8316

Please sign in to comment.