diff options
author | Ingela Anderton Andin <[email protected]> | 2016-05-12 11:54:25 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-05-20 09:05:49 +0200 |
commit | aa6c59f6416ce1685f605d99795edfcbc74d4b8d (patch) | |
tree | 2093ca5dadf9bc6c5719263e99b2f7cf984f81e1 /lib/ssl/test/ssl_npn_handshake_SUITE.erl | |
parent | 0b1db10a6956c58b0eb9251c81c7df88addfe21b (diff) | |
download | otp-aa6c59f6416ce1685f605d99795edfcbc74d4b8d.tar.gz otp-aa6c59f6416ce1685f605d99795edfcbc74d4b8d.tar.bz2 otp-aa6c59f6416ce1685f605d99795edfcbc74d4b8d.zip |
ssl: Remove use of test_server config macro
Diffstat (limited to 'lib/ssl/test/ssl_npn_handshake_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_npn_handshake_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/test/ssl_npn_handshake_SUITE.erl b/lib/ssl/test/ssl_npn_handshake_SUITE.erl index 8363c80cf4..c55fa73cfb 100644 --- a/lib/ssl/test/ssl_npn_handshake_SUITE.erl +++ b/lib/ssl/test/ssl_npn_handshake_SUITE.erl @@ -69,8 +69,8 @@ init_per_suite(Config) -> try crypto:start() of ok -> ssl:start(), - {ok, _} = make_certs:all(?config(data_dir, Config), - ?config(priv_dir, Config)), + {ok, _} = make_certs:all(proplists:get_value(data_dir, Config), + proplists:get_value(priv_dir, Config)), ssl_test_lib:cert_options(Config) catch _:_ -> {skip, "Crypto did not start"} |