diff options
author | Hans Nilsson <[email protected]> | 2017-01-19 15:10:58 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-02-01 13:12:06 +0100 |
commit | 666f78baa02345058e71021b1560c42c5bb1aff5 (patch) | |
tree | 1b95eb259ef2a44b867f60db2dff2b5ffba71f47 /lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl | |
parent | d89206ccb3df4fc4fff4549f561085611febb22a (diff) | |
download | otp-666f78baa02345058e71021b1560c42c5bb1aff5.tar.gz otp-666f78baa02345058e71021b1560c42c5bb1aff5.tar.bz2 otp-666f78baa02345058e71021b1560c42c5bb1aff5.zip |
ssh: update tests for removed algorithms
Diffstat (limited to 'lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl b/lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl index 56a33d6349..fd5157d603 100644 --- a/lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl +++ b/lib/ssh/test/ssh_sftpd_erlclient_SUITE.erl @@ -65,6 +65,7 @@ init_per_suite(Config) -> {ok, FileInfo} = file:read_file_info(FileName), ok = file:write_file_info(FileName, FileInfo#file_info{mode = 8#400}), + ssh_test_lib:setup_rsa(DataDir, PrivDir), ssh_test_lib:setup_dsa(DataDir, PrivDir), Config end). @@ -73,6 +74,7 @@ end_per_suite(Config) -> UserDir = filename:join(proplists:get_value(priv_dir, Config), nopubkey), file:del_dir(UserDir), SysDir = proplists:get_value(priv_dir, Config), + ssh_test_lib:clean_rsa(SysDir), ssh_test_lib:clean_dsa(SysDir), ok. |