Skip to content

Commit

Permalink
[fix] #166 test 코드 필드명 컴파일 오류 관련 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
khyojun committed Jan 22, 2025
1 parent c59a0c9 commit ad27991
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public static GongbaekTimeSlotEntity getTestGongbaekTimeSlot() {
return GongbaekTimeSlotEntity.builder()
.startTime(10)
.endTime(12)
.weekDate(WeekDay.MON)
.weekDay(WeekDay.MON)
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class LectureTimeSlotFixture {

public static LectureTimeSlotEntity makeLectureTimeSlotEntity() {
return LectureTimeSlotEntity.builder()
.weekDate(WeekDay.MON)
.weekDay(WeekDay.MON)
.startTime(9.0)
.endTime(10.0)
.userEntity(UserEntityFixture.create())
Expand Down

0 comments on commit ad27991

Please sign in to comment.