From b1fe57b21c8c88ddb0a594ef876ee112f363c304 Mon Sep 17 00:00:00 2001 From: varnerac-ubnt Date: Wed, 16 Jul 2014 20:46:00 -0400 Subject: [PATCH] Start asn1 in tests Tests currently fail on R16B03 because the `asn1` application was not started. `public_key` needs this application to run. --- test/lhttpc_manager_tests.erl | 1 + test/lhttpc_tests.erl | 1 + 2 files changed, 2 insertions(+) diff --git a/test/lhttpc_manager_tests.erl b/test/lhttpc_manager_tests.erl index 4e24afe0..d92b27e4 100644 --- a/test/lhttpc_manager_tests.erl +++ b/test/lhttpc_manager_tests.erl @@ -36,6 +36,7 @@ %%% Eunit setup stuff start_app() -> + application:start(asn1), application:start(public_key), ok = application:start(ssl), _ = application:load(lhttpc), diff --git a/test/lhttpc_tests.erl b/test/lhttpc_tests.erl index 7b6b809a..1a5f620b 100644 --- a/test/lhttpc_tests.erl +++ b/test/lhttpc_tests.erl @@ -99,6 +99,7 @@ test_no(N, Tests) -> %%% Eunit setup stuff start_app() -> + application:start(asn1), application:start(crypto), application:start(public_key), ok = application:start(ssl),