Skip to content

Commit

Permalink
feat(BE): 매칭 작성 시 Owener 할당 BUS-204-Matching-owner #159
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemonade255 committed Oct 27, 2023
1 parent ff30d68 commit f3321e6
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,4 @@ void getByMatchingIdIsAndStateEqualsTest() {
matchingApplicationPersistenceAdapter.getByMatchingIdIsAndStateEquals(1L, ApplicationStateEnum.Approved);
verify(matchingApplicationRepository, times(1)).getByMatchingIdAndStateEquals(1L, ApplicationStateEnum.Approved);
}

@Test
void updateMatchingApplicationTest() {
matchingApplication.setState(ApplicationStateEnum.Approved);
matchingApplicationPersistenceAdapter.updateMatchingApplication(matchingApplication);
verify(matchingApplicationRepository, times(1)).save(matchingMapper.toEntity(matchingApplication));
}
}

0 comments on commit f3321e6

Please sign in to comment.