Skip to content

Commit

Permalink
fix : 프로젝트 날짜 수정 테스트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sunandrabbit committed Nov 14, 2024
1 parent 652506f commit 3fd4b9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/team1/be/seamless/e2e/ProjectE2ETest.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void setUp() {
}

@Test
void 프로젝트_날짜_수정_성공() {
void 프로젝트_종료일은_태스크의_가장_늦은_종료일보다_뒤여야_합니다() {
ProjectUpdate body = new ProjectUpdate(
"프로젝트 이름1",
"프로젝트 설명1",
Expand All @@ -106,7 +106,7 @@ public void setUp() {
requestEntity,
String.class);
System.out.println(responseEntity.getBody());
assertThat(responseEntity.getStatusCode()).isEqualTo(OK);
assertThat(responseEntity.getStatusCode()).isEqualTo(BAD_REQUEST);
}

@Test
Expand Down

0 comments on commit 3fd4b9b

Please sign in to comment.