diff options
author | Björn Gustavsson <[email protected]> | 2016-02-25 15:56:52 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-02-25 16:07:42 +0100 |
commit | bf4ae9bb9cc0b4ae53447aa4a7cd25add5d3a7a4 (patch) | |
tree | a744fa16124982e56e64ae87b78483667165a8d9 /lib/compiler/test/compile_SUITE.erl | |
parent | 9d8efc5acc50ae1c76b00a67d06ed284fbcce0aa (diff) | |
download | otp-bf4ae9bb9cc0b4ae53447aa4a7cd25add5d3a7a4.tar.gz otp-bf4ae9bb9cc0b4ae53447aa4a7cd25add5d3a7a4.tar.bz2 otp-bf4ae9bb9cc0b4ae53447aa4a7cd25add5d3a7a4.zip |
Replace use of lists:keysearch/3 with lists:keyfind/3
Diffstat (limited to 'lib/compiler/test/compile_SUITE.erl')
-rw-r--r-- | lib/compiler/test/compile_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/test/compile_SUITE.erl b/lib/compiler/test/compile_SUITE.erl index 4eb42f81cc..8c4957d377 100644 --- a/lib/compiler/test/compile_SUITE.erl +++ b/lib/compiler/test/compile_SUITE.erl @@ -455,8 +455,8 @@ encrypted_abstr_1(Simple, Target) -> ?line {ok,{simple,[{compile_info,CInfo}]}} = beam_lib:chunks(Target, [compile_info]), - ?line {value,{_,Opts}} = lists:keysearch(options, 1, CInfo), - ?line {value,{_,'********'}} = lists:keysearch(debug_info_key, 1, Opts), + {_,Opts} = lists:keyfind(options, 1, CInfo), + {_,'********'} = lists:keyfind(debug_info_key, 1, Opts), %% Try some illegal forms of crypto keys. ?line error = compile:file(Simple, |