diff options
author | Hans Nilsson <[email protected]> | 2017-03-17 13:27:42 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-03-17 13:27:42 +0100 |
commit | 304e2939256d2d1d8e3ef7ccf66b3ce058b04d44 (patch) | |
tree | dd61988d4886499ac53bda6df1efa7bf5f1af079 /lib/ssh/test | |
parent | eeac5af66b94596ba9a6c765c5f30383f7ed117a (diff) | |
download | otp-304e2939256d2d1d8e3ef7ccf66b3ce058b04d44.tar.gz otp-304e2939256d2d1d8e3ef7ccf66b3ce058b04d44.tar.bz2 otp-304e2939256d2d1d8e3ef7ccf66b3ce058b04d44.zip |
ssh: remove from test
Diffstat (limited to 'lib/ssh/test')
-rw-r--r-- | lib/ssh/test/ssh_to_openssh_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/test/ssh_to_openssh_SUITE.erl b/lib/ssh/test/ssh_to_openssh_SUITE.erl index 687e6efaf3..7eda009552 100644 --- a/lib/ssh/test/ssh_to_openssh_SUITE.erl +++ b/lib/ssh/test/ssh_to_openssh_SUITE.erl @@ -333,7 +333,7 @@ erlang_client_openssh_server_publickey_rsa(Config) when is_list(Config) -> [{_,_, not_encrypted}] -> ConnectionRef = ssh_test_lib:connect(?SSH_DEFAULT_PORT, - [{public_key_alg, ssh_rsa}, + [{pref_public_key_algs, ['ssh-rsa','ssh-dss']}, {user_interaction, false}, silently_accept_hosts]), {ok, Channel} = @@ -354,7 +354,7 @@ erlang_client_openssh_server_publickey_dsa() -> erlang_client_openssh_server_publickey_dsa(Config) when is_list(Config) -> ConnectionRef = ssh_test_lib:connect(?SSH_DEFAULT_PORT, - [{public_key_alg, ssh_dsa}, + [{pref_public_key_algs, ['ssh-dss','ssh-rsa']}, {user_interaction, false}, silently_accept_hosts]), {ok, Channel} = |