diff options
author | Björn Gustavsson <[email protected]> | 2016-04-18 08:11:59 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-04-18 08:11:59 +0200 |
commit | 26c6f622ce12e865a229b51ff503f852df56d82d (patch) | |
tree | dfad86595b411bdad7a83908e571e13a21445adb /lib/debugger/test/bug_SUITE.erl | |
parent | 87c18e235cbcce8edc19d3bb154bf0cfa51a7c62 (diff) | |
download | otp-26c6f622ce12e865a229b51ff503f852df56d82d.tar.gz otp-26c6f622ce12e865a229b51ff503f852df56d82d.tar.bz2 otp-26c6f622ce12e865a229b51ff503f852df56d82d.zip |
Use proplists:get_value/2 instead of ?config()
Diffstat (limited to 'lib/debugger/test/bug_SUITE.erl')
-rw-r--r-- | lib/debugger/test/bug_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debugger/test/bug_SUITE.erl b/lib/debugger/test/bug_SUITE.erl index 10c8b4467a..48cdcea576 100644 --- a/lib/debugger/test/bug_SUITE.erl +++ b/lib/debugger/test/bug_SUITE.erl @@ -55,7 +55,7 @@ end_per_group(_GroupName, Config) -> otp2163(doc) -> ["BIF exit reason"]; otp2163(suite) -> []; otp2163(Config) when is_list(Config) -> - ?line DataDir = ?config(data_dir, Config), + DataDir = proplists:get_value(data_dir, Config), %% First compile and get the expected results: @@ -78,7 +78,7 @@ otp2163(Config) when is_list(Config) -> otp4845(doc) -> ["BIF not loading and not bug compatible, OTP-4845 OTP-4859"]; otp4845(suite) -> []; otp4845(Config) when is_list(Config) -> - ?line DataDir = ?config(data_dir, Config), + DataDir = proplists:get_value(data_dir, Config), %% First compile and get the expected results: |