From 54648a6c041ce5b1c5c975501104ac7358c207f4 Mon Sep 17 00:00:00 2001 From: pricelees Date: Thu, 18 Sep 2025 15:26:41 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20equals=20=ED=8C=90=EB=8B=A8=20=EC=8B=A4?= =?UTF-8?q?=ED=8C=A8=20=ED=95=B4=EA=B2=B0=EC=9D=84=20=EC=9C=84=ED=95=9CSch?= =?UTF-8?q?eduleFactory=20=EB=82=B4=20=EB=82=98=EB=85=B8=EC=B4=88=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../schedule/infrastructure/persistence/ScheduleEntity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/roomescape/schedule/infrastructure/persistence/ScheduleEntity.kt b/src/main/kotlin/roomescape/schedule/infrastructure/persistence/ScheduleEntity.kt index 93e30bf7..6762d310 100644 --- a/src/main/kotlin/roomescape/schedule/infrastructure/persistence/ScheduleEntity.kt +++ b/src/main/kotlin/roomescape/schedule/infrastructure/persistence/ScheduleEntity.kt @@ -62,7 +62,7 @@ object ScheduleEntityFactory { return ScheduleEntity( id = id, date = date, - time = time, + time = time.withSecond(0).withNano(0), storeId = storeId, themeId = themeId, status = ScheduleStatus.AVAILABLE