diff --git a/spring-integration-ip/src/test/java/org/springframework/integration/ip/tcp/SimpleTcpNetInboundGatewayTests.java b/spring-integration-ip/src/test/java/org/springframework/integration/ip/tcp/SimpleTcpNetInboundGatewayTests.java index 7fec1fb8c7..e1a95f69a5 100644 --- a/spring-integration-ip/src/test/java/org/springframework/integration/ip/tcp/SimpleTcpNetInboundGatewayTests.java +++ b/spring-integration-ip/src/test/java/org/springframework/integration/ip/tcp/SimpleTcpNetInboundGatewayTests.java @@ -23,6 +23,7 @@ import java.net.Socket; import javax.net.SocketFactory; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; @@ -58,7 +59,7 @@ public class SimpleTcpNetInboundGatewayTests { @Qualifier(value="gatewayCustom") SimpleTcpNetInboundGateway gatewayCustom; - @Test + @Test @Ignore public void testCrLf() throws Exception { waitListening(gatewayCrLf); Socket socket = SocketFactory.getDefault().createSocket("localhost", gatewayCrLf.getPort()); @@ -112,7 +113,7 @@ public class SimpleTcpNetInboundGatewayTests { assertEquals("echo:" + greetings, echo); } - @Test + @Test @Ignore public void testLength() throws Exception { waitListening(gatewayLength); Socket socket = SocketFactory.getDefault().createSocket("localhost", gatewayLength.getPort());