Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tkuzynow committed Aug 30, 2024
1 parent 340da77 commit 798b11d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ void assignEnquiry_Should_removeAllUnauthorizedMembers_When_sessionIsNotATeamSes
verifyAsync(
(a) ->
verify(this.rocketChatFacade, times(1))
.removeUserFromGroup(consultantToRemove.getRocketChatId(), session.getGroupId()));
.removeUserFromGroupIgnoreGroupNotFound(consultantToRemove.getRocketChatId(), session.getGroupId()));
verifyAsync(
(a) ->
verify(this.rocketChatFacade, times(1))
Expand Down Expand Up @@ -424,7 +424,7 @@ void assignEnquiry_ShouldNot_removeTeamMembers_When_sessionIsTeamSession() {
verifyAsync(
(a) ->
verify(this.rocketChatFacade, atLeastOnce())
.removeUserFromGroup(consultantToRemove.getRocketChatId(), session.getGroupId()));
.removeUserFromGroupIgnoreGroupNotFound(consultantToRemove.getRocketChatId(), session.getGroupId()));
verifyAsync(
(a) ->
verify(this.rocketChatFacade, atLeastOnce())
Expand Down

0 comments on commit 798b11d

Please sign in to comment.