Do not require BoringSSL for testSessionTicketsWithTLSv12AndNoKey (#10301)

Motivation:

`SslHandlerTest.testSessionTicketsWithTLSv12AndNoKey` does not require
BoringSSL and works with OpenSSL as well.

Modifications:

- Remove assume statement that expected BoringSSL;

Result:

Test works for any implementation of `OPENSSL` provider.
This commit is contained in:
Idel Pivnitskiy 2020-05-18 05:25:04 -07:00 committed by GitHub
parent 1b6595b358
commit 877db52e37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1129,7 +1129,6 @@ public class SslHandlerTest {
@Test(timeout = 5000L)
public void testSessionTicketsWithTLSv12AndNoKey() throws Throwable {
assumeTrue(OpenSsl.isBoringSSL());
testSessionTickets(SslUtils.PROTOCOL_TLS_V1_2, false);
}