From d7262ffa05b1ca2c0acb02cc244f6e6631e757f8 Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Fri, 24 Jan 2025 13:42:22 +0100 Subject: [PATCH] openvidu-test-e2e: fix audioOnlyVideoOnlyRecordTest --- .../java/io/openvidu/test/e2e/OpenViduTestAppE2eTest.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/openvidu-test-e2e/src/test/java/io/openvidu/test/e2e/OpenViduTestAppE2eTest.java b/openvidu-test-e2e/src/test/java/io/openvidu/test/e2e/OpenViduTestAppE2eTest.java index dcab6b8e..adc90988 100644 --- a/openvidu-test-e2e/src/test/java/io/openvidu/test/e2e/OpenViduTestAppE2eTest.java +++ b/openvidu-test-e2e/src/test/java/io/openvidu/test/e2e/OpenViduTestAppE2eTest.java @@ -2183,10 +2183,9 @@ public class OpenViduTestAppE2eTest extends AbstractOpenViduTestappE2eTest { // Check audio-only INDIVIDUAL recording recPath = recordingsPath + SESSION_NAME + "~2/"; recording = new OpenVidu(OPENVIDU_URL, OPENVIDU_SECRET).getRecording(SESSION_NAME + "~2"); - // As the recording is audio only and there is only one participant publishing - // its audio - // The zip file only has 1 file (audio file) - this.recordingUtils.checkIndividualRecording(recPath, recording, 1, "opus", null, true); + // As the recording is audio only and there are 2 participants publishing audio, + // the zip file must contain only 2 audio files + this.recordingUtils.checkIndividualRecording(recPath, recording, 2, "opus", null, true); user.getDriver().findElement(By.id("close-dialog-btn")).click(); Thread.sleep(500);