aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/videos
diff options
context:
space:
mode:
Diffstat (limited to 'shared/extra-utils/videos')
-rw-r--r--shared/extra-utils/videos/videos.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/extra-utils/videos/videos.ts b/shared/extra-utils/videos/videos.ts
index 110552c77..f94fa233c 100644
--- a/shared/extra-utils/videos/videos.ts
+++ b/shared/extra-utils/videos/videos.ts
@@ -338,7 +338,7 @@ async function checkVideoFilesWereRemoved (
338 338
339 const files = await readdir(directoryPath) 339 const files = await readdir(directoryPath)
340 for (const file of files) { 340 for (const file of files) {
341 expect(file).to.not.contain(videoUUID) 341 expect(file, `File ${file} should not exist in ${directoryPath}`).to.not.contain(videoUUID)
342 } 342 }
343 } 343 }
344} 344}