diff --git a/src/components/RightSidebar/Participants/Participant.spec.js b/src/components/RightSidebar/Participants/Participant.spec.js index bfbb4f5b078..b44bf53cc6e 100644 --- a/src/components/RightSidebar/Participants/Participant.spec.js +++ b/src/components/RightSidebar/Participants/Participant.spec.js @@ -709,11 +709,11 @@ describe('Participant.vue', () => { await testCanBan() }) - test('allows a moderator to ban a federated user', async () => { + test('doesn not allow a moderator to ban a federated user', async () => { conversation.participantType = PARTICIPANT.TYPE.MODERATOR participant.actorType = ATTENDEE.ACTOR_TYPE.FEDERATED_USERS participant.participantType = PARTICIPANT.TYPE.USER - await testCanBan() + await testCannotBan() }) test('allows a moderator to ban a guest', async () => { diff --git a/src/components/RightSidebar/Participants/Participant.vue b/src/components/RightSidebar/Participants/Participant.vue index bbd57740e4f..56d2c0070e2 100644 --- a/src/components/RightSidebar/Participants/Participant.vue +++ b/src/components/RightSidebar/Participants/Participant.vue @@ -290,7 +290,7 @@ :name="removeParticipantLabel" :container="container">

{{ removeDialogMessage }}

-