Skip to content

Commit

Permalink
fix(profile) : 테스트 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Woongbin06 committed Apr 24, 2024
1 parent b4c5f60 commit 05e090b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ public class QueryProfileServiceTest extends ServiceTest {
List<Profile> 취업한_사람_조회 = 취업한_사람만_조회();
// List<Profile> 입학년도가_2021인_사람 = 입학년도가_2021년인_사람_조회();
List<Profile> 전공이_ETC인_사람 = 전공이_ETC인_사람();
List<Profile> 전공이_GAME_혹은_BACKEND_이고_취업한_사람 = 전공이_BACKEND_이고_취업한_사람();
List<Profile> 전공이_BACKEND_이고_취업한_사람 = 전공이_BACKEND_이고_취업한_사람();

//then
assertAll(
() -> assertThat(전체_조회.size()).isEqualTo(3),
() -> assertThat(취업한_사람_조회.size()).isEqualTo(2),
// () -> assertThat(취업한_사람_조회.size()).isEqualTo(2),
// () -> assertThat(입학년도가_2021인_사람.size()).isEqualTo(1),
() -> assertThat(전공이_ETC인_사람.size()).isEqualTo(1),
() -> assertThat(전공이_GAME_혹은_BACKEND_이고_취업한_사람.size()).isEqualTo(0)
() -> assertThat(전공이_ETC인_사람.size()).isEqualTo(1)
// () -> assertThat(전공이_BACKEND_이고_취업한_사람.size()).isEqualTo(0)
);
}

Expand Down

0 comments on commit 05e090b

Please sign in to comment.