diff --git a/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/config/conditional/DisableBuiltInPredicatesTests.java b/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/config/conditional/DisableBuiltInPredicatesTests.java index 61c6fb94..91fe60f7 100644 --- a/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/config/conditional/DisableBuiltInPredicatesTests.java +++ b/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/config/conditional/DisableBuiltInPredicatesTests.java @@ -58,8 +58,9 @@ public class DisableBuiltInPredicatesTests { } @RunWith(SpringRunner.class) - @SpringBootTest(classes = Config.class, properties = { "spring.cloud.gateway.predicate.after.enabled=false", - "spring.cloud.gateway.predicate.before.enabled=false" }) + @SpringBootTest(classes = Config.class, + properties = { "spring.cloud.gateway.predicate.after.enabled=false", + "spring.cloud.gateway.predicate.before.enabled=false" }) @ActiveProfiles("disable-components") public static class DisableSpecificsPredicatesByProperty { diff --git a/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/filter/factory/SpringCloudCircuitBreakerResilience4JFilterFactoryTests.java b/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/filter/factory/SpringCloudCircuitBreakerResilience4JFilterFactoryTests.java index 20e74f9a..8953a200 100644 --- a/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/filter/factory/SpringCloudCircuitBreakerResilience4JFilterFactoryTests.java +++ b/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/filter/factory/SpringCloudCircuitBreakerResilience4JFilterFactoryTests.java @@ -43,8 +43,9 @@ import static org.springframework.boot.test.context.SpringBootTest.WebEnvironmen /** * @author Ryan Baxter */ -@SpringBootTest(webEnvironment = RANDOM_PORT, properties = { "logging.level.org.springframework.cloud.gateway=TRACE", - "debug=true", "spring.cloud.circuitbreaker.hystrix.enabled=false" }) +@SpringBootTest(webEnvironment = RANDOM_PORT, + properties = { "logging.level.org.springframework.cloud.gateway=TRACE", "debug=true", + "spring.cloud.circuitbreaker.hystrix.enabled=false" }) @ContextConfiguration(classes = SpringCloudCircuitBreakerResilience4JFilterFactoryTests.Config.class) @DirtiesContext public class SpringCloudCircuitBreakerResilience4JFilterFactoryTests