diff options
author | Ingela Anderton Andin <[email protected]> | 2011-12-05 14:57:31 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-12-05 15:01:18 +0100 |
commit | a08aa907c04a833414a427ee70bec8b2f3aece9a (patch) | |
tree | 072a568fd2aa3165a6246f4efe52e01df43b799f /lib/ssl/test/ssl_basic_SUITE.erl | |
parent | e930283dbe0c7aeefb31d535e90b644a993cc0f7 (diff) | |
download | otp-a08aa907c04a833414a427ee70bec8b2f3aece9a.tar.gz otp-a08aa907c04a833414a427ee70bec8b2f3aece9a.tar.bz2 otp-a08aa907c04a833414a427ee70bec8b2f3aece9a.zip |
Added tcp_delivery_workaround to the test case invalid_signature_server
The workaround ought to have been added to this case when it was added to
the test case invalid_signature_client
Diffstat (limited to 'lib/ssl/test/ssl_basic_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_basic_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/test/ssl_basic_SUITE.erl b/lib/ssl/test/ssl_basic_SUITE.erl index e68a4c375d..45da9ac25b 100644 --- a/lib/ssl/test/ssl_basic_SUITE.erl +++ b/lib/ssl/test/ssl_basic_SUITE.erl @@ -3033,8 +3033,8 @@ invalid_signature_server(Config) when is_list(Config) -> {from, self()}, {options, [{verify, verify_peer} | ClientOpts]}]), - ssl_test_lib:check_result(Server, {error, "bad certificate"}, - Client, {error,"bad certificate"}). + tcp_delivery_workaround(Server, {error, "bad certificate"}, + Client, {error,"bad certificate"}). %%-------------------------------------------------------------------- |