Skip to content

Commit

Permalink
Fix: 테스트 케이스 업데이트
Browse files Browse the repository at this point in the history
  • Loading branch information
zionhann committed Oct 24, 2023
1 parent 75c8fea commit ba3e5eb
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.http.MediaType;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.MvcResult;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
Expand Down Expand Up @@ -258,7 +257,7 @@ void ReportControllerTests_159() throws Exception {
//then
assertThat(report).isPresent();
assertThat(report.get().getImages()).hasSize(1);
assertThat(report.get().getImages().get(0).getPath()).isEqualTo("path/to/image/modified");
assertThat(report.get().getImages().get(0).getPath()).isEqualTo("modified");
}

@DisplayName("보고서 시간을 변경한 경우 전체 그룹의 시간에도 반영되어야 한다")
Expand Down

0 comments on commit ba3e5eb

Please sign in to comment.