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 Norman Maurer
parent 51805e3248
commit 1fe92e3077

View File

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