diff options
author | Hans Nilsson <[email protected]> | 2017-10-12 16:34:18 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-10-12 16:34:18 +0200 |
commit | 57b783120821e878c0b92c7b6e9b68615ba27346 (patch) | |
tree | d456ed6cecdde15595c3baaf140aac715eb9afbc /lib/ssh/test/ssh_protocol_SUITE.erl | |
parent | 0f4d686b53a0b7937a8666c6c28addf7c884b192 (diff) | |
download | otp-57b783120821e878c0b92c7b6e9b68615ba27346.tar.gz otp-57b783120821e878c0b92c7b6e9b68615ba27346.tar.bz2 otp-57b783120821e878c0b92c7b6e9b68615ba27346.zip |
ssh: Anonymize unused variables in test suites
Diffstat (limited to 'lib/ssh/test/ssh_protocol_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_protocol_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ssh/test/ssh_protocol_SUITE.erl b/lib/ssh/test/ssh_protocol_SUITE.erl index 7da921adb2..74f802cf57 100644 --- a/lib/ssh/test/ssh_protocol_SUITE.erl +++ b/lib/ssh/test/ssh_protocol_SUITE.erl @@ -884,9 +884,9 @@ chk_pref_algs(Config, filter_supported(K, Algs) -> Algs -- (Algs--supported(K)). -supported(K) -> proplists:get_value( - server2client, - ssh_transport:supported_algorithms(cipher)). +supported(_K) -> proplists:get_value( + server2client, + ssh_transport:supported_algorithms(cipher)). to_lists(L) -> lists:map(fun erlang:atom_to_list/1, L). |