Merge branch '2.1.x'

This commit is contained in:
Brian Clozel 2019-02-08 19:48:49 +01:00
commit 8bcbcf6c27
1 changed files with 2 additions and 1 deletions

View File

@ -214,7 +214,8 @@ public class UndertowServletWebServerFactoryTests
.isThrownBy(() -> testRestrictedSSLProtocolsAndCipherSuites(
new String[] { "TLSv1.2" },
new String[] { "TLS_EMPTY_RENEGOTIATION_INFO_SCSV" }))
.isInstanceOfAny(SSLHandshakeException.class, SocketException.class);
.isInstanceOfAny(SSLException.class, SSLHandshakeException.class,
SocketException.class);
}
@Test