Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ckend into feat/#145
  • Loading branch information
Ji hwan Shin authored and Ji hwan Shin committed Apr 10, 2024
2 parents 1d66b71 + 7276b93 commit e42bd95
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import java.time.Month;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
Expand Down Expand Up @@ -118,7 +119,7 @@ void init() {
void 내모임조회_성공() {
// given
User user = UserFixture.createStaticUser();
doReturn(user).when(userRepository).findByOrgIdOrThrow(any());
doReturn(Optional.of(user)).when(userRepository).findByOrgId(any());
doReturn(applies).when(applyRepository).findAllByUserIdAndStatus(any(), any());

MeetingV2GetAllMeetingByOrgUserQueryDto dto = new MeetingV2GetAllMeetingByOrgUserQueryDto(
Expand Down

0 comments on commit e42bd95

Please sign in to comment.