aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger/test/int_break_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-04-18 08:11:59 +0200
committerBjörn Gustavsson <[email protected]>2016-04-18 08:11:59 +0200
commit26c6f622ce12e865a229b51ff503f852df56d82d (patch)
treedfad86595b411bdad7a83908e571e13a21445adb /lib/debugger/test/int_break_SUITE.erl
parent87c18e235cbcce8edc19d3bb154bf0cfa51a7c62 (diff)
downloadotp-26c6f622ce12e865a229b51ff503f852df56d82d.tar.gz
otp-26c6f622ce12e865a229b51ff503f852df56d82d.tar.bz2
otp-26c6f622ce12e865a229b51ff503f852df56d82d.zip
Use proplists:get_value/2 instead of ?config()
Diffstat (limited to 'lib/debugger/test/int_break_SUITE.erl')
-rw-r--r--lib/debugger/test/int_break_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debugger/test/int_break_SUITE.erl b/lib/debugger/test/int_break_SUITE.erl
index d50dc7d0eb..ef770c7a93 100644
--- a/lib/debugger/test/int_break_SUITE.erl
+++ b/lib/debugger/test/int_break_SUITE.erl
@@ -55,7 +55,7 @@ end_per_group(_GroupName, Config) ->
init_per_testcase(_Case, Config) ->
- ?line DataDir = ?config(data_dir, Config),
+ DataDir = proplists:get_value(data_dir, Config),
?line Mod = ordsets1,
?line {module,Mod} = int:i(filename:join(DataDir, Mod)),
?line ok = io:format("Interpreted modules: ~p", [int:interpreted()]),