diff options
author | Hans Nilsson <[email protected]> | 2017-02-17 19:18:58 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-03-02 12:07:01 +0100 |
commit | b06e71e0ff39050eb538352a7b7ca6df8f62eed3 (patch) | |
tree | 3f8a9b0e2db8a00de444889b62bf907722fe9fe6 /lib/ssh/test/ssh_sftpd_SUITE.erl | |
parent | 7e2ceb5d44dc5004ea4d8271ee1e961bfa4987fd (diff) | |
download | otp-b06e71e0ff39050eb538352a7b7ca6df8f62eed3.tar.gz otp-b06e71e0ff39050eb538352a7b7ca6df8f62eed3.tar.bz2 otp-b06e71e0ff39050eb538352a7b7ca6df8f62eed3.zip |
ssh: Remove missplaced options in test suites
Removed daemon-only options from client and client-only options from daemon.
Diffstat (limited to 'lib/ssh/test/ssh_sftpd_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_sftpd_SUITE.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ssh/test/ssh_sftpd_SUITE.erl b/lib/ssh/test/ssh_sftpd_SUITE.erl index 6d18a980ee..b167f98ac8 100644 --- a/lib/ssh/test/ssh_sftpd_SUITE.erl +++ b/lib/ssh/test/ssh_sftpd_SUITE.erl @@ -158,8 +158,7 @@ init_per_testcase(TestCase, Config) -> [{user_dir, ClientUserDir}, {user, ?USER}, {password, ?PASSWD}, {user_interaction, false}, - {silently_accept_hosts, true}, - {pwdfun, fun(_,_) -> true end}]), + {silently_accept_hosts, true}]), {ok, Channel} = ssh_connection:session_channel(Cm, ?XFER_WINDOW_SIZE, ?XFER_PACKET_SIZE, ?TIMEOUT), |