From 19141c9e428144a0237e041355069f3d78677251 Mon Sep 17 00:00:00 2001 From: Anton B Date: Mon, 25 Jul 2022 14:45:00 -0300 Subject: [PATCH] test: fix typo --- bigbluebutton-tests/playwright/audio/audio.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bigbluebutton-tests/playwright/audio/audio.spec.js b/bigbluebutton-tests/playwright/audio/audio.spec.js index cd49e28c73..e7d15c97e1 100644 --- a/bigbluebutton-tests/playwright/audio/audio.spec.js +++ b/bigbluebutton-tests/playwright/audio/audio.spec.js @@ -16,7 +16,7 @@ test.describe.parallel('Audio', () => { }); // https://docs.bigbluebutton.org/2.6/release-tests.html#muteunmute - test('Mute youself by clicking the mute button @ci', async ({ browser, page }) => { + test('Mute yourself by clicking the mute button @ci', async ({ browser, page }) => { const audio = new Audio(browser, page); await audio.init(true, false); await audio.muteYourselfByButton(); @@ -37,7 +37,7 @@ test.describe.parallel('Audio', () => { test.describe.parallel('Talking indicator @ci', () => { // https://docs.bigbluebutton.org/2.6/release-tests.html#talking-indicator - test('Mute youself by clicking the talking indicator', async ({ browser, page }) => { + test('Mute yourself by clicking the talking indicator', async ({ browser, page }) => { const audio = new Audio(browser, page); await audio.init(true, false); await audio.muteYourselfBytalkingIndicator();