aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/real-world/real-world.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/real-world/real-world.ts')
-rw-r--r--server/tests/real-world/real-world.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tests/real-world/real-world.ts b/server/tests/real-world/real-world.ts
index f10ca856d..ae02ef64d 100644
--- a/server/tests/real-world/real-world.ts
+++ b/server/tests/real-world/real-world.ts
@@ -327,7 +327,7 @@ function areDifferences (videos1: Video[], videos2: Video[]) {
327 return `Video ${video1.uuid} has missing video file ${videoFile1.magnetUri}.` 327 return `Video ${video1.uuid} has missing video file ${videoFile1.magnetUri}.`
328 } 328 }
329 329
330 if (videoFile1.size !== videoFile2.size || videoFile1.resolutionLabel !== videoFile2.resolutionLabel) { 330 if (videoFile1.size !== videoFile2.size || videoFile1.resolution.label !== videoFile2.resolution.label) {
331 return `Video ${video1.uuid} has different video file ${videoFile1.magnetUri}.` 331 return `Video ${video1.uuid} has different video file ${videoFile1.magnetUri}.`
332 } 332 }
333 }) 333 })