From b65fb26fa4fb66f83e4a39ec406cc97a64f6db79 Mon Sep 17 00:00:00 2001 From: spencergibb Date: Fri, 10 Dec 2021 12:07:31 -0500 Subject: [PATCH] renamed GetWithBodyRequestTests --- ...ithBodyRequestTest.java => GetWithBodyRequestTests.java} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename spring-cloud-gateway-mvc/src/test/java/org/springframework/cloud/gateway/mvc/{GetWithBodyRequestTest.java => GetWithBodyRequestTests.java} (97%) diff --git a/spring-cloud-gateway-mvc/src/test/java/org/springframework/cloud/gateway/mvc/GetWithBodyRequestTest.java b/spring-cloud-gateway-mvc/src/test/java/org/springframework/cloud/gateway/mvc/GetWithBodyRequestTests.java similarity index 97% rename from spring-cloud-gateway-mvc/src/test/java/org/springframework/cloud/gateway/mvc/GetWithBodyRequestTest.java rename to spring-cloud-gateway-mvc/src/test/java/org/springframework/cloud/gateway/mvc/GetWithBodyRequestTests.java index 9836dae9..59c770c3 100644 --- a/spring-cloud-gateway-mvc/src/test/java/org/springframework/cloud/gateway/mvc/GetWithBodyRequestTest.java +++ b/spring-cloud-gateway-mvc/src/test/java/org/springframework/cloud/gateway/mvc/GetWithBodyRequestTests.java @@ -31,7 +31,7 @@ import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.web.client.TestRestTemplate; import org.springframework.boot.web.client.RestTemplateBuilder; import org.springframework.boot.web.server.LocalServerPort; -import org.springframework.cloud.gateway.mvc.GetWithBodyRequestTest.TestApplication.Foo; +import org.springframework.cloud.gateway.mvc.GetWithBodyRequestTests.TestApplication.Foo; import org.springframework.cloud.gateway.mvc.config.ProxyExchangeArgumentResolver; import org.springframework.cloud.gateway.mvc.config.ProxyProperties; import org.springframework.cloud.gateway.mvc.http.GetWithBodyRequestClientHttpRequestFactory; @@ -58,8 +58,8 @@ import static org.assertj.core.api.Assertions.assertThat; @RunWith(SpringRunner.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) -@ContextConfiguration(classes = GetWithBodyRequestTest.TestApplication.class) -public class GetWithBodyRequestTest { +@ContextConfiguration(classes = GetWithBodyRequestTests.TestApplication.class) +public class GetWithBodyRequestTests { @Autowired private TestRestTemplate rest;