diff options
author | Siri Hansen <[email protected]> | 2016-02-29 10:59:39 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2016-02-29 10:59:39 +0100 |
commit | cd5b6648c8f488f2b547c7f8bf56de641cf685e8 (patch) | |
tree | b0c94ce9f203c5f4ce5627c4ccab77506edf52e8 /lib/common_test/test | |
parent | 87c77e75cc641b16b3704f8947fe15911fe40fc3 (diff) | |
parent | bf309240cb531df880989702ae901316e8b5e97d (diff) | |
download | otp-cd5b6648c8f488f2b547c7f8bf56de641cf685e8.tar.gz otp-cd5b6648c8f488f2b547c7f8bf56de641cf685e8.tar.bz2 otp-cd5b6648c8f488f2b547c7f8bf56de641cf685e8.zip |
Merge branch 'siri/ct_netconfc/allow-ssh-options/OTP-13338' into maint
* siri/ct_netconfc/allow-ssh-options/OTP-13338:
Allow any ssh option when starting a netconf client
Diffstat (limited to 'lib/common_test/test')
-rw-r--r-- | lib/common_test/test/ct_netconfc_SUITE_data/netconfc1_SUITE.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/common_test/test/ct_netconfc_SUITE_data/netconfc1_SUITE.erl b/lib/common_test/test/ct_netconfc_SUITE_data/netconfc1_SUITE.erl index 49b02d2bba..9d4c798795 100644 --- a/lib/common_test/test/ct_netconfc_SUITE_data/netconfc1_SUITE.erl +++ b/lib/common_test/test/ct_netconfc_SUITE_data/netconfc1_SUITE.erl @@ -332,7 +332,8 @@ invalid_opt(Config) -> Opts1 = ?DEFAULT_SSH_OPTS(DataDir) ++ [{timeout,invalidvalue}], {error,{invalid_option,{timeout,invalidvalue}}} = ct_netconfc:open(Opts1), Opts2 = ?DEFAULT_SSH_OPTS(DataDir) ++ [{some_other_opt,true}], - {error,{invalid_option,{some_other_opt,true}}} = ct_netconfc:open(Opts2), + {error,{ssh,could_not_connect_to_server,{options,_}}} = + ct_netconfc:open(Opts2), ok. timeout_close_session(Config) -> |