@@ -533,7 +533,7 @@ void t12() throws Exception {
533533 .andExpect (jsonPath ("$.message" ).value ("학습 계획이 성공적으로 삭제되었습니다." ))
534534 .andExpect (jsonPath ("$.data.id" ).value (planId ))
535535 .andExpect (jsonPath ("$.data.subject" ).value (originalPlan .getSubject ()))
536- .andExpect (jsonPath ("$.data.color" ).value (originalPlan . getColor ()))
536+ .andExpect (jsonPath ("$.data.color" ).value (Color . RED . name ()))
537537 .andExpect (jsonPath ("$.data.deletedDate" ).value ("2025-10-01" ))
538538 .andExpect (jsonPath ("$.data.applyScope" ).value ("THIS_ONLY" ));
539539
@@ -562,8 +562,8 @@ void t13() throws Exception {
562562 .andExpect (jsonPath ("$.data.subject" ).value (originalPlan .getSubject ()))
563563 .andExpect (jsonPath ("$.data.deletedDate" ).value ("2025-10-01" ))
564564 .andExpect (jsonPath ("$.data.applyScope" ).value ("THIS_ONLY" ))
565- .andExpect (jsonPath ("$.data.startDate" ).value ("2025-10-01T09 :00:00" ))
566- .andExpect (jsonPath ("$.data.endDate" ).value ("2025-10-01T11 :00:00" ));
565+ .andExpect (jsonPath ("$.data.startDate" ).value ("2025-10-01T12 :00:00" ))
566+ .andExpect (jsonPath ("$.data.endDate" ).value ("2025-10-01T13 :00:00" ));
567567
568568 // 10월 1일에 해당하는 계획은 없어야함
569569 mvc .perform (get ("/api/plans/date/2025-10-01" )
@@ -627,8 +627,8 @@ void t15() throws Exception {
627627 .andExpect (jsonPath ("$.data.id" ).value (planId ))
628628 .andExpect (jsonPath ("$.data.deletedDate" ).value ("2025-10-10" ))
629629 .andExpect (jsonPath ("$.data.applyScope" ).value ("FROM_THIS_DATE" ))
630- .andExpect (jsonPath ("$.data.startDate" ).value ("2025-10-10T09 :00:00" ))
631- .andExpect (jsonPath ("$.data.endDate" ).value ("2025-10-10T11 :00:00" ));
630+ .andExpect (jsonPath ("$.data.startDate" ).value ("2025-10-10T12 :00:00" ))
631+ .andExpect (jsonPath ("$.data.endDate" ).value ("2025-10-10T13 :00:00" ));
632632
633633 // 10월 1일에 해당하는 계획은 있어야함
634634 mvc .perform (get ("/api/plans/date/2025-10-01" )
0 commit comments