diff options
Diffstat (limited to 'server/tests/api')
-rw-r--r-- | server/tests/api/live/live.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tests/api/live/live.ts b/server/tests/api/live/live.ts index 98a5287aa..ac91b6b08 100644 --- a/server/tests/api/live/live.ts +++ b/server/tests/api/live/live.ts | |||
@@ -424,7 +424,7 @@ describe('Test live', function () { | |||
424 | const file = hlsPlaylist.files.find(f => f.resolution.id === resolution) | 424 | const file = hlsPlaylist.files.find(f => f.resolution.id === resolution) |
425 | 425 | ||
426 | expect(file).to.exist | 426 | expect(file).to.exist |
427 | expect(file.fps).to.equal(25) | 427 | expect(file.fps).to.be.oneOf([ 24, 25 ]) |
428 | expect(file.size).to.be.greaterThan(1) | 428 | expect(file.size).to.be.greaterThan(1) |
429 | 429 | ||
430 | await makeRawRequest(file.torrentUrl, 200) | 430 | await makeRawRequest(file.torrentUrl, 200) |