aboutsummaryrefslogtreecommitdiffstats
path: root/erts/test/nt_SUITE.erl
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2016-04-06 15:46:49 +0200
committerBjörn-Egil Dahlberg <[email protected]>2016-04-06 15:46:49 +0200
commitf1bd16d883b6236dff83d7784ebd858ef29e2c0c (patch)
tree1aa76ed047e055485483dc2e3ce3377ec644130d /erts/test/nt_SUITE.erl
parent120a586a5d7d13e0d022dd773537856d30482e1e (diff)
downloadotp-f1bd16d883b6236dff83d7784ebd858ef29e2c0c.tar.gz
otp-f1bd16d883b6236dff83d7784ebd858ef29e2c0c.tar.bz2
otp-f1bd16d883b6236dff83d7784ebd858ef29e2c0c.zip
Eliminate use of ?config() macro
Diffstat (limited to 'erts/test/nt_SUITE.erl')
-rw-r--r--erts/test/nt_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/test/nt_SUITE.erl b/erts/test/nt_SUITE.erl
index 3a8d8be197..cdce035438 100644
--- a/erts/test/nt_SUITE.erl
+++ b/erts/test/nt_SUITE.erl
@@ -512,11 +512,11 @@ get_current_procs(Config) ->
erl_parse:parse_term(Tok).
nt_info(Config) when is_list(Config) ->
- "\"" ++ filename:join(?config(data_dir, Config), "nt_info") ++ "\"".
+ "\"" ++ filename:join(proplists:get_value(data_dir, Config), "nt_info") ++ "\"".
logdir(Config) ->
- ?config(priv_dir, Config).
+ proplists:get_value(priv_dir, Config).
look_for_next(Template,L,N) ->
FN = Template ++ integer_to_list(N),