diff options
author | Björn Gustavsson <[email protected]> | 2016-03-18 12:34:37 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-03-18 12:34:37 +0100 |
commit | e3b85cb860927091d43e3c4d83c9dd9eb2ad51f8 (patch) | |
tree | 1828706b34ae646b7eac9d7a1e49073dbc707d3f /lib/asn1/test/syntax_SUITE.erl | |
parent | 7e13621fccd53a368b1717495382ae86239ed65b (diff) | |
download | otp-e3b85cb860927091d43e3c4d83c9dd9eb2ad51f8.tar.gz otp-e3b85cb860927091d43e3c4d83c9dd9eb2ad51f8.tar.bz2 otp-e3b85cb860927091d43e3c4d83c9dd9eb2ad51f8.zip |
Replace ?config() macro with proplists:get_value()
Diffstat (limited to 'lib/asn1/test/syntax_SUITE.erl')
-rw-r--r-- | lib/asn1/test/syntax_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/test/syntax_SUITE.erl b/lib/asn1/test/syntax_SUITE.erl index a354b75062..56b8f32ff7 100644 --- a/lib/asn1/test/syntax_SUITE.erl +++ b/lib/asn1/test/syntax_SUITE.erl @@ -305,7 +305,7 @@ run(List, File, Config) -> run(List, File0, Config, Module) -> Base = File0 ++ ".asn1", - File = filename:join(?config(priv_dir, Config), Base), + File = filename:join(proplists:get_value(priv_dir, Config), Base), case run_1(List, Base, File, Module, 0) of 0 -> ok; Errors -> ?t:fail(Errors) |