formatting

This commit is contained in:
spencergibb
2022-01-26 16:13:21 -05:00
parent 7c50a3ae18
commit 162409f6fc
2 changed files with 6 additions and 4 deletions

View File

@@ -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 {

View File

@@ -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