From f3b309d1e7301bd25b92b9fde5d327c25c480ec4 Mon Sep 17 00:00:00 2001 From: Spencer Gibb Date: Tue, 21 May 2019 14:40:17 -0400 Subject: [PATCH] Unignore tests --- .../factory/RetryGatewayFilterFactoryIntegrationTests.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/spring-cloud-gateway-core/src/test/java/org/springframework/cloud/gateway/filter/factory/RetryGatewayFilterFactoryIntegrationTests.java b/spring-cloud-gateway-core/src/test/java/org/springframework/cloud/gateway/filter/factory/RetryGatewayFilterFactoryIntegrationTests.java index f81a4958..70003dee 100644 --- a/spring-cloud-gateway-core/src/test/java/org/springframework/cloud/gateway/filter/factory/RetryGatewayFilterFactoryIntegrationTests.java +++ b/spring-cloud-gateway-core/src/test/java/org/springframework/cloud/gateway/filter/factory/RetryGatewayFilterFactoryIntegrationTests.java @@ -24,7 +24,6 @@ import com.netflix.loadbalancer.Server; import com.netflix.loadbalancer.ServerList; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; -import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; @@ -58,14 +57,12 @@ import static org.springframework.boot.test.context.SpringBootTest.WebEnvironmen public class RetryGatewayFilterFactoryIntegrationTests extends BaseWebClientTests { @Test - @Ignore // gh-982 public void retryFilterGet() { testClient.get().uri("/retry?key=get").exchange().expectStatus().isOk() .expectBody(String.class).isEqualTo("3"); } @Test - @Ignore // gh-982 public void retryFilterFailure() { testClient.get().uri("/retryalwaysfail?key=getjavafailure&count=4") .header(HttpHeaders.HOST, "www.retryjava.org").exchange().expectStatus() @@ -75,7 +72,6 @@ public class RetryGatewayFilterFactoryIntegrationTests extends BaseWebClientTest } @Test - @Ignore // gh-982 public void retryFilterGetJavaDsl() { testClient.get().uri("/retry?key=getjava&count=2") .header(HttpHeaders.HOST, "www.retryjava.org").exchange().expectStatus() @@ -91,7 +87,6 @@ public class RetryGatewayFilterFactoryIntegrationTests extends BaseWebClientTest } @Test - @Ignore // gh-982 @SuppressWarnings("unchecked") public void retryFilterLoadBalancedWithMultipleServers() { String host = "www.retrywithloadbalancer.org";