diff options
author | Hans Nilsson <[email protected]> | 2017-06-07 17:30:05 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-06-12 12:19:53 +0200 |
commit | e46e9d5bec5089d16d0cae7b435c4c82f57f0316 (patch) | |
tree | e3a1aecf7912259c07556eea9f88bf02bc39938c /lib/ssh | |
parent | 5bcd6af12b34db9d1976099d86fe3414b810aa3e (diff) | |
download | otp-e46e9d5bec5089d16d0cae7b435c4c82f57f0316.tar.gz otp-e46e9d5bec5089d16d0cae7b435c4c82f57f0316.tar.bz2 otp-e46e9d5bec5089d16d0cae7b435c4c82f57f0316.zip |
ssh: fix sporadic error in ssh_options_SUITE
Diffstat (limited to 'lib/ssh')
-rw-r--r-- | lib/ssh/test/ssh_options_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/test/ssh_options_SUITE.erl b/lib/ssh/test/ssh_options_SUITE.erl index b710ca8fb7..8b454ffe5d 100644 --- a/lib/ssh/test/ssh_options_SUITE.erl +++ b/lib/ssh/test/ssh_options_SUITE.erl @@ -555,14 +555,14 @@ connectfun_disconnectfun_server(Config) -> {disconnect,Ref,R} -> ct:log("Disconnect result: ~p",[R]), ssh:stop_daemon(Pid) - after 5000 -> + after 10000 -> receive X -> ct:log("received ~p",[X]) after 0 -> ok end, {fail, "No disconnectfun action"} end - after 5000 -> + after 10000 -> receive X -> ct:log("received ~p",[X]) after 0 -> ok |