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 798b11d commit a399a47
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,8 @@ void assignEnquiry_Should_removeAllUnauthorizedMembers_When_sessionIsNotATeamSes
verifyAsync(
(a) ->
verify(this.rocketChatFacade, times(1))
.removeUserFromGroupIgnoreGroupNotFound(consultantToRemove.getRocketChatId(), session.getGroupId()));
.removeUserFromGroupIgnoreGroupNotFound(
consultantToRemove.getRocketChatId(), session.getGroupId()));
verifyAsync(
(a) ->
verify(this.rocketChatFacade, times(1))
Expand Down Expand Up @@ -424,7 +425,8 @@ void assignEnquiry_ShouldNot_removeTeamMembers_When_sessionIsTeamSession() {
verifyAsync(
(a) ->
verify(this.rocketChatFacade, atLeastOnce())
.removeUserFromGroupIgnoreGroupNotFound(consultantToRemove.getRocketChatId(), session.getGroupId()));
.removeUserFromGroupIgnoreGroupNotFound(
consultantToRemove.getRocketChatId(), session.getGroupId()));
verifyAsync(
(a) ->
verify(this.rocketChatFacade, atLeastOnce())
Expand Down

0 comments on commit a399a47

Please sign in to comment.