From aeb86e70c13648235d7d73ed596b344da880685d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 11 Oct 2012 20:07:49 +0200 Subject: Add crypto into the required applications As suggested by @prof3ta. --- test/ws_SUITE.erl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/ws_SUITE.erl') 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. -- cgit v1.2.3