From d8f90f0f45e185f767b0cf0e410ace180ce3c708 Mon Sep 17 00:00:00 2001 From: sgibb Date: Fri, 8 Mar 2024 14:34:51 -0500 Subject: [PATCH] =?UTF-8?q?Formatting=CB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../filter/factory/SaveSessionGatewayFilterFactoryTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);