Skip to content

Commit

Permalink
test: 러너 게시글에 서포터 조인 조회 기능 테스트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyena0608 committed Oct 10, 2023
1 parent ad5418c commit 539b493
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ void joinSupporterByRunnerPostId() {
softly.assertThat(maybeActual).isPresent();
final RunnerPost actual = maybeActual.get();

assertThat(actual.getSupporter()).isEqualTo(ditooSupporter);
assertThat(actual).isEqualTo(runnerPost);
softly.assertThat(actual.getSupporter()).isEqualTo(ditooSupporter);
softly.assertThat(actual).isEqualTo(runnerPost);
});
}
}

0 comments on commit 539b493

Please sign in to comment.