aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/test/httpc_proxy_SUITE.erl
diff options
context:
space:
mode:
authorKirilll Zaborsky <[email protected]>2015-06-04 12:43:11 +0300
committerZandra Hird <[email protected]>2015-06-05 14:51:28 +0200
commit3839fb3857d8ef8a5ace1a3e52758de2149891b2 (patch)
tree48b348c77b15a6e3ff9e4e22ecccf814668dd5f2 /lib/inets/test/httpc_proxy_SUITE.erl
parentdf9965c331a173045658d5a00f0349170262bd5f (diff)
downloadotp-3839fb3857d8ef8a5ace1a3e52758de2149891b2.tar.gz
otp-3839fb3857d8ef8a5ace1a3e52758de2149891b2.tar.bz2
otp-3839fb3857d8ef8a5ace1a3e52758de2149891b2.zip
inets: add asn1 to httpc proxy suite
httpc_proxy_SUITE should have asn1 properly started to be invokable standaone
Diffstat (limited to 'lib/inets/test/httpc_proxy_SUITE.erl')
-rw-r--r--lib/inets/test/httpc_proxy_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/test/httpc_proxy_SUITE.erl b/lib/inets/test/httpc_proxy_SUITE.erl
index ddd23d0c65..fbd85e9e42 100644
--- a/lib/inets/test/httpc_proxy_SUITE.erl
+++ b/lib/inets/test/httpc_proxy_SUITE.erl
@@ -79,7 +79,7 @@ local_proxy_cases() ->
%%--------------------------------------------------------------------
init_per_suite(Config0) ->
- case init_apps([crypto,public_key], Config0) of
+ case init_apps(suite_apps(), Config0) of
Config when is_list(Config) ->
make_cert_files(dsa, "server-", Config),
Config;
@@ -94,7 +94,7 @@ end_per_suite(_Config) ->
%% internal functions
suite_apps() ->
- [crypto,public_key].
+ [asn1,crypto,public_key].
%%--------------------------------------------------------------------