Skip to content

Commit eb1efdb

Browse files
committed
1 parent 0fc8bec commit eb1efdb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

spring-integration-websocket/src/test/java/org/springframework/integration/websocket/config/WebSocketParserTests.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2016 the original author or authors.
2+
* Copyright 2014-2018 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -70,6 +70,7 @@
7070

7171
/**
7272
* @author Artem Bilan
73+
*
7374
* @since 4.1
7475
*/
7576
@ContextConfiguration
@@ -182,7 +183,7 @@ public void testDefaultInboundChannelAdapterAndServerContainer() {
182183
Map<TransportType, TransportHandler> transportHandlers = sockJsService.getTransportHandlers();
183184

184185
//If "handshake-handler" is provided, "transport-handlers" isn't allowed
185-
assertEquals(8, transportHandlers.size());
186+
assertEquals(6, transportHandlers.size());
186187
assertSame(this.handshakeHandler,
187188
TestUtils.getPropertyValue(transportHandlers.get(TransportType.WEBSOCKET), "handshakeHandler"));
188189
assertEquals(4000L, sockJsService.getDisconnectDelay());

0 commit comments

Comments
 (0)