From 43972ee466740e91b16c08fe106551657969e669 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 28 Sep 2022 11:21:25 +0200 Subject: [PATCH] Relax bitrate/fps test --- server/tests/api/live/live.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/tests/api/live/live.ts b/server/tests/api/live/live.ts index c436f0f01..4e070832d 100644 --- a/server/tests/api/live/live.ts +++ b/server/tests/api/live/live.ts @@ -538,7 +538,7 @@ describe('Test live', function () { } const minBitrateLimits = { - 720: 5500 * 1000, + 720: 5000 * 1000, 360: 1000 * 1000, 240: 550 * 1000 } @@ -569,7 +569,7 @@ describe('Test live', function () { if (resolution >= 720) { expect(file.fps).to.be.approximately(60, 10) } else { - expect(file.fps).to.be.approximately(30, 2) + expect(file.fps).to.be.approximately(30, 3) } const filename = basename(file.fileUrl)