diff options
author | Loïc Hoguin <[email protected]> | 2012-10-11 20:35:23 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-10-11 20:35:23 +0200 |
commit | e128e935af1950b665885f369819a58db88bf61e (patch) | |
tree | 9a9869248ab53adc456a469b7054a9218fc75a2d /test | |
parent | aeb86e70c13648235d7d73ed596b344da880685d (diff) | |
download | cowboy-e128e935af1950b665885f369819a58db88bf61e.tar.gz cowboy-e128e935af1950b665885f369819a58db88bf61e.tar.bz2 cowboy-e128e935af1950b665885f369819a58db88bf61e.zip |
Fix the autobahn test suite
All tests still pass! (Excluding UTF-8 of course.)
Diffstat (limited to 'test')
-rw-r--r-- | test/autobahn_SUITE.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/autobahn_SUITE.erl b/test/autobahn_SUITE.erl index b05920d..9ae9d7a 100644 --- a/test/autobahn_SUITE.erl +++ b/test/autobahn_SUITE.erl @@ -36,7 +36,8 @@ groups() -> [{autobahn, [], BaseTests}]. init_per_suite(Config) -> - application:start(inets), + application:start(crypto), + application:start(ranch), application:start(cowboy), %% /tmp must be used as the parent directory for the virtualenv because %% the directory names used in CT are so long that the interpreter path @@ -56,7 +57,8 @@ init_per_suite(Config) -> end_per_suite(_Config) -> os:cmd("deactivate"), application:stop(cowboy), - application:stop(inets), + application:stop(ranch), + application:stop(crypto), ok. init_per_group(autobahn, Config) -> |