diff options
author | Hans Nilsson <hans@erlang.org> | 2016-05-02 13:08:18 +0200 |
---|---|---|
committer | Hans Nilsson <hans@erlang.org> | 2016-05-02 13:08:18 +0200 |
commit | 8a7789a5814dad194310d08dafc4421d22b3c89f (patch) | |
tree | 95b22111cdd36b2022cbfa56e5304a141d173801 /lib/ssh/test/ssh_renegotiate_SUITE.erl | |
parent | d32a045349d5f9156142aa57a932b6a270052d29 (diff) | |
parent | 5fa07312d27a7ff6826bf943e3b9d6575be3acf1 (diff) | |
download | otp-8a7789a5814dad194310d08dafc4421d22b3c89f.tar.gz otp-8a7789a5814dad194310d08dafc4421d22b3c89f.tar.bz2 otp-8a7789a5814dad194310d08dafc4421d22b3c89f.zip |
Merge branch 'hans/ssh/gen_statem/OTP-13267'
Diffstat (limited to 'lib/ssh/test/ssh_renegotiate_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_renegotiate_SUITE.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/ssh/test/ssh_renegotiate_SUITE.erl b/lib/ssh/test/ssh_renegotiate_SUITE.erl index 90132becbd..f1a909cbd0 100644 --- a/lib/ssh/test/ssh_renegotiate_SUITE.erl +++ b/lib/ssh/test/ssh_renegotiate_SUITE.erl @@ -33,7 +33,6 @@ suite() -> [{ct_hooks,[ts_install_cth]}, {timetrap,{seconds,40}}]. - all() -> [{group,default_algs}, {group,aes_gcm} ]. @@ -238,7 +237,7 @@ renegotiate2(Config) -> %% get_kex_init - helper function to get key_exchange_init_msg get_kex_init(Conn) -> %% First, validate the key exchange is complete (StateName == connected) - {connected,S} = sys:get_state(Conn), + {{connected,_},S} = sys:get_state(Conn), %% Next, walk through the elements of the #state record looking %% for the #ssh_msg_kexinit record. This method is robust against %% changes to either record. The KEXINIT message contains a cookie |