From 7e877a0719354afcdeaa68687bbb8dea8cc186c8 Mon Sep 17 00:00:00 2001 From: This2sho Date: Sun, 16 Jun 2024 05:15:18 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=84=B8=EC=85=98=20=EC=BF=BC=EB=A6=AC?= =?UTF-8?q?=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EC=BB=A4=EB=B0=8B=20=EC=95=88?= =?UTF-8?q?=EB=90=9C=20=EB=B6=80=EB=B6=84=20=EC=BB=A4=EB=B0=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../parking/application/auth/AuthServiceTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-api/src/test/java/com/parkingcomestrue/parking/application/auth/AuthServiceTest.java b/app-api/src/test/java/com/parkingcomestrue/parking/application/auth/AuthServiceTest.java index cd4ed735..6729d889 100644 --- a/app-api/src/test/java/com/parkingcomestrue/parking/application/auth/AuthServiceTest.java +++ b/app-api/src/test/java/com/parkingcomestrue/parking/application/auth/AuthServiceTest.java @@ -50,7 +50,7 @@ class AuthServiceTest extends ContainerTest { LocalDateTime originExpiredAt = originSession.getExpiredAt(); // when - authService.updateSessionExpiredAt(originSession); + authService.findAndUpdateSession(sessionId); MemberSession updatedSession = authService.findSession(sessionId); LocalDateTime updatedExpiredAt = updatedSession.getExpiredAt();