aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/object-storage/video-imports.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/api/object-storage/video-imports.ts')
-rw-r--r--server/tests/api/object-storage/video-imports.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/api/object-storage/video-imports.ts b/server/tests/api/object-storage/video-imports.ts
index 11c866411..d5fd91b6a 100644
--- a/server/tests/api/object-storage/video-imports.ts
+++ b/server/tests/api/object-storage/video-imports.ts
@@ -5,8 +5,8 @@ import { expectStartWith, FIXTURE_URLS } from '@server/tests/shared'
5import { areMockObjectStorageTestsDisabled } from '@shared/core-utils' 5import { areMockObjectStorageTestsDisabled } from '@shared/core-utils'
6import { HttpStatusCode, VideoPrivacy } from '@shared/models' 6import { HttpStatusCode, VideoPrivacy } from '@shared/models'
7import { 7import {
8 cleanupTests,
8 createSingleServer, 9 createSingleServer,
9 killallServers,
10 makeRawRequest, 10 makeRawRequest,
11 ObjectStorageCommand, 11 ObjectStorageCommand,
12 PeerTubeServer, 12 PeerTubeServer,
@@ -103,6 +103,6 @@ describe('Object storage for video import', function () {
103 }) 103 })
104 104
105 after(async function () { 105 after(async function () {
106 await killallServers([ server ]) 106 await cleanupTests([ server ])
107 }) 107 })
108}) 108})