diff --git a/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/filter/factory/SaveSessionGatewayFilterFactoryTests.java b/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/filter/factory/SaveSessionGatewayFilterFactoryTests.java index 9da3aed9..b2e2bcc7 100644 --- a/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/filter/factory/SaveSessionGatewayFilterFactoryTests.java +++ b/spring-cloud-gateway-server/src/test/java/org/springframework/cloud/gateway/filter/factory/SaveSessionGatewayFilterFactoryTests.java @@ -62,7 +62,7 @@ public class SaveSessionGatewayFilterFactoryTests extends BaseWebClientTests { when(mockWebSession.getAttributes()).thenReturn(new HashMap<>()); Mono doSaveSession = Mono.fromRunnable(() -> { - // Do save session. Need to make sure the Mono is subscribed + // Do save session. Need to make sure the Mono is subscribed fakeSessionStore.put(SESSION_ID, mockWebSession); }); when(mockWebSession.save()).thenReturn(doSaveSession);