Upgrade to Californium-BUILD-SNAPSHOT

See gh-15878
This commit is contained in:
Brian Clozel
2019-02-08 19:45:24 +01:00
parent 72c8e5d366
commit c24f02696f
2 changed files with 3 additions and 2 deletions

View File

@@ -148,7 +148,7 @@
<quartz.version>2.3.0</quartz.version>
<querydsl.version>4.2.1</querydsl.version>
<rabbit-amqp-client.version>5.4.3</rabbit-amqp-client.version>
<reactor-bom.version>Californium-SR4</reactor-bom.version>
<reactor-bom.version>Californium-BUILD-SNAPSHOT</reactor-bom.version>
<rest-assured.version>3.1.1</rest-assured.version>
<reactive-streams.version>1.0.2</reactive-streams.version>
<rxjava.version>1.3.8</rxjava.version>

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