Skip to content

Commit

Permalink
refactor: 사이즈 확인 부분 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lxxjn0 committed Aug 10, 2020
1 parent 5d9403e commit b8090d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @author kouz95
* @author lxxjn0
*/

package sellerlee.back.article.acceptance;
Expand Down Expand Up @@ -73,7 +73,7 @@ Stream<DynamicTest> manageArticle() {
dynamicTest("게시글 추가", this::createArticle),
dynamicTest("게시글 페이지 조회", () -> {
List<FeedResponse> feedArticleResponses = findArticlePage();
assertThat(feedArticleResponses.size()).isEqualTo(1L);
assertThat(feedArticleResponses.size()).isEqualTo(1);
}),
dynamicTest("게시글 상세 조회", () -> {
ArticleResponse articleResponse = getArticleResponse();
Expand Down

0 comments on commit b8090d0

Please sign in to comment.