Skip to content

Commit

Permalink
test: displayName 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
tsulocalize committed Oct 7, 2024
1 parent 8eed601 commit db5080e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void createChecklist() {
.statusCode(201);
}

@DisplayName("체크리스트 작성 성공v1")
@DisplayName("체크리스트 작성 v1 성공")
@Test
void createChecklistV1() {
RestAssured.given().log().all()
Expand Down Expand Up @@ -124,7 +124,7 @@ void readChecklistById() {
//TODO 수정
}

@DisplayName("작성된 체크리스트 조회 성공 v1")
@DisplayName("작성된 체크리스트 조회 v1 성공")
@Test
void readChecklistV1() {
long checklistId = checklistManageService.createChecklist(this.getAuthenticatedUser(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void createChecklist() {
assertThat(checklistId).isGreaterThan(0);
}

@DisplayName("체크리스트 작성 성공v1")
@DisplayName("체크리스트 작성 v1 성공")
@Test
void createChecklistV1() {
//given
Expand Down

0 comments on commit db5080e

Please sign in to comment.