Skip to content

Commit

Permalink
fix : 변수 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seokho-1116 committed May 6, 2024
1 parent b0c8499 commit 8450687
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ void setup(@Autowired EntityManager entityManager) {
memberId = member.getId();

//그룹이 없는 사용자
Member memberWithNoGroup = MemberFixture.member(1);
entityManager.persist(memberWithNoGroup);
memberIdWithNoGroup = memberWithNoGroup.getId();
Member memberNotInGroup = MemberFixture.member(1);
entityManager.persist(memberNotInGroup);
memberIdWithNoGroup = memberNotInGroup.getId();

//그룹
List<Group> groups = new ArrayList<>();
Expand Down

0 comments on commit 8450687

Please sign in to comment.