Skip to content

Commit

Permalink
test: 메소드 이름 변경에 따른 테스트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
zzawang committed May 30, 2024
1 parent 721d029 commit 7a7f8cc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void testGetIssueCountDto() {

IssueCountDto issueCountDto = issueQueryService.countIssues();

assertThat(issueCountDto.getOpenedIssueCount()).isEqualTo(openedIssueCount);
assertThat(issueCountDto.getClosedIssueCount()).isEqualTo(closedIssueCount);
assertThat(issueCountDto.getOpenedCount()).isEqualTo(openedIssueCount);
assertThat(issueCountDto.getClosedCount()).isEqualTo(closedIssueCount);
}
}

0 comments on commit 7a7f8cc

Please sign in to comment.