Skip to content

Commit

Permalink
test: 불필요한 테스트 객체 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
hong-sile authored and n0eyes committed Sep 1, 2023
1 parent 122090c commit 88ea4be
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,8 @@ class TagServiceTest {
private static final Session TEST_SESSION = new Session(4L, 5L, "세션");
private static final Mission TEST_MISSION = new Mission(6L, "레벨 2 - 웹 자동차 경주", TEST_SESSION);
private static final Member TEST_MEMBER_CREW1 = new Member(1L, "홍혁준", "홍실", Role.CREW, 2L, null, null);
private static final Member TEST_MEMBER_CREW2 = new Member(2L, "송세연", "아마란스", Role.CREW, 2L, null, null);
private static final Studylog TEST_STUDYLOG1 = new Studylog(TEST_MEMBER_CREW1, "레벨 1 레벨인터뷰", "레벨인터뷰에 대한 내용입니다.",
TEST_MISSION, Collections.emptyList());
private static final Studylog TEST_STUDYLOG2 = new Studylog(TEST_MEMBER_CREW2, "레벨 1 레벨인터뷰", "레벨인터뷰에 대한 내용입니다.",
TEST_MISSION, Collections.emptyList());

@Mock
private StudylogTagService studylogTagService;
Expand Down

0 comments on commit 88ea4be

Please sign in to comment.