aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/object-storage/video-imports.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-05-10 13:57:06 +0200
committerChocobozzz <me@florianbigard.com>2023-05-10 13:57:06 +0200
commit644391bee644c9078695ab042743d108870de7ef (patch)
tree5adb7f38a9f5c1f14a6a555982f1f8d4616168ba /server/tests/api/object-storage/video-imports.ts
parent7590f7a8684c69c38d30dab68377720da16d2420 (diff)
downloadPeerTube-644391bee644c9078695ab042743d108870de7ef.tar.gz
PeerTube-644391bee644c9078695ab042743d108870de7ef.tar.zst
PeerTube-644391bee644c9078695ab042743d108870de7ef.zip
Fix test cleanup
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})