diff options
Diffstat (limited to 'server/tests/api/redundancy/redundancy.ts')
-rw-r--r-- | server/tests/api/redundancy/redundancy.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/tests/api/redundancy/redundancy.ts b/server/tests/api/redundancy/redundancy.ts index 9d5d96efd..921a48856 100644 --- a/server/tests/api/redundancy/redundancy.ts +++ b/server/tests/api/redundancy/redundancy.ts | |||
@@ -5,7 +5,7 @@ import * as chai from 'chai' | |||
5 | import { readdir } from 'fs-extra' | 5 | import { readdir } from 'fs-extra' |
6 | import * as magnetUtil from 'magnet-uri' | 6 | import * as magnetUtil from 'magnet-uri' |
7 | import { join } from 'path' | 7 | import { join } from 'path' |
8 | import { HttpStatusCode } from '@shared/core-utils' | 8 | import { HttpStatusCode } from '@shared/models' |
9 | import { | 9 | import { |
10 | checkSegmentHash, | 10 | checkSegmentHash, |
11 | checkVideoFilesWereRemoved, | 11 | checkVideoFilesWereRemoved, |
@@ -129,13 +129,13 @@ async function check2Webseeds (videoUUID?: string) { | |||
129 | 129 | ||
130 | await makeGetRequest({ | 130 | await makeGetRequest({ |
131 | url: servers[0].url, | 131 | url: servers[0].url, |
132 | statusCodeExpected: HttpStatusCode.OK_200, | 132 | expectedStatus: HttpStatusCode.OK_200, |
133 | path: '/static/redundancy/' + `${videoUUID}-${file.resolution.id}.mp4`, | 133 | path: '/static/redundancy/' + `${videoUUID}-${file.resolution.id}.mp4`, |
134 | contentType: null | 134 | contentType: null |
135 | }) | 135 | }) |
136 | await makeGetRequest({ | 136 | await makeGetRequest({ |
137 | url: servers[1].url, | 137 | url: servers[1].url, |
138 | statusCodeExpected: HttpStatusCode.OK_200, | 138 | expectedStatus: HttpStatusCode.OK_200, |
139 | path: `/static/webseed/${videoUUID}-${file.resolution.id}.mp4`, | 139 | path: `/static/webseed/${videoUUID}-${file.resolution.id}.mp4`, |
140 | contentType: null | 140 | contentType: null |
141 | }) | 141 | }) |