aboutsummaryrefslogtreecommitdiffstats
path: root/test/ws_SUITE.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-10-11 20:07:49 +0200
committerLoïc Hoguin <[email protected]>2012-10-11 20:13:23 +0200
commitaeb86e70c13648235d7d73ed596b344da880685d (patch)
treec9d8e530de883d457db23c10e3a722ae532bef57 /test/ws_SUITE.erl
parent9facad92459d7277fd7ba510fc769d95a0498fab (diff)
downloadcowboy-aeb86e70c13648235d7d73ed596b344da880685d.tar.gz
cowboy-aeb86e70c13648235d7d73ed596b344da880685d.tar.bz2
cowboy-aeb86e70c13648235d7d73ed596b344da880685d.zip
Add crypto into the required applications
As suggested by @prof3ta.
Diffstat (limited to 'test/ws_SUITE.erl')
-rw-r--r--test/ws_SUITE.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ws_SUITE.erl b/test/ws_SUITE.erl
index b732eb8..0c98df0 100644
--- a/test/ws_SUITE.erl
+++ b/test/ws_SUITE.erl
@@ -33,6 +33,7 @@ groups() ->
init_per_suite(Config) ->
application:start(inets),
+ application:start(crypto),
application:start(ranch),
application:start(cowboy),
Config.
@@ -40,6 +41,7 @@ init_per_suite(Config) ->
end_per_suite(_Config) ->
application:stop(cowboy),
application:stop(ranch),
+ application:stop(crypto),
application:stop(inets),
ok.