Skip to content

Commit

Permalink
Adds fn and stream to disabled test
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Jan 17, 2025
1 parent aebeae9 commit a905ee0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class GlobalFilterDefault {

@Test
public void shouldInjectBuiltInFilters() {
assertThat(globalFilters).hasSizeGreaterThanOrEqualTo(10);
assertThat(globalFilters).hasSizeGreaterThanOrEqualTo(12);
}

}
Expand Down Expand Up @@ -86,6 +86,8 @@ public void shouldInjectOnlyEnabledBuiltInFilters() {
"spring.cloud.gateway.global-filter.reactive-load-balancer-client.enabled=false",
"spring.cloud.gateway.global-filter.load-balancer-client.enabled=false",
"spring.cloud.gateway.global-filter.load-balancer-service-instance-cookie.enabled=false",
"spring.cloud.gateway.global-filter.function-routing.enabled=false",
"spring.cloud.gateway.global-filter.stream-routing.enabled=false",
"spring.cloud.gateway.metrics.enabled=false" })
@ActiveProfiles("disable-components")
public class DisableAllGlobalFiltersByProperty {
Expand Down

0 comments on commit a905ee0

Please sign in to comment.