We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7b08c5 commit 16195e6Copy full SHA for 16195e6
src/test/java/dmu/dasom/api/domain/activity/ActivityServiceTest.java
@@ -152,7 +152,7 @@ void deleteActivity_whenNotFound_thenThrowException() {
152
private ActivityRequestDto createRequestDto(Section section) {
153
return ActivityRequestDto.builder()
154
.activityDate(LocalDate.of(2024, 5, 10))
155
- .section(section) // Section 객체를 직접 전달
+ .section(section.getName()) // Section 객체를 직접 전달
156
.title("새로운 활동 제목")
157
.award("최우수상")
158
.build();
0 commit comments