diff options
author | Chocobozzz <me@florianbigard.com> | 2023-03-07 11:17:12 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-03-07 11:17:12 +0100 |
commit | 09f3d81e0c8edebbe8f5698811ecfb165f942378 (patch) | |
tree | f87198a2eaa9761201d28ea2bd3eae9c057f2785 /server/tests/api | |
parent | d9dbf27a7dacb42e49e21d5691141c2edf885644 (diff) | |
parent | 73fb3dc53571a6e94750a9d6cb5c2e949e1adcb9 (diff) | |
download | PeerTube-09f3d81e0c8edebbe8f5698811ecfb165f942378.tar.gz PeerTube-09f3d81e0c8edebbe8f5698811ecfb165f942378.tar.zst PeerTube-09f3d81e0c8edebbe8f5698811ecfb165f942378.zip |
Merge branch 'release/5.1.0' into develop
Diffstat (limited to 'server/tests/api')
-rw-r--r-- | server/tests/api/videos/video-static-file-privacy.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/server/tests/api/videos/video-static-file-privacy.ts b/server/tests/api/videos/video-static-file-privacy.ts index ef0774b41..16530884e 100644 --- a/server/tests/api/videos/video-static-file-privacy.ts +++ b/server/tests/api/videos/video-static-file-privacy.ts | |||
@@ -256,10 +256,9 @@ describe('Test video static file privacy', function () { | |||
256 | const videoFileToken = await server.videoToken.getVideoFileToken({ videoId: uuid }) | 256 | const videoFileToken = await server.videoToken.getVideoFileToken({ videoId: uuid }) |
257 | await waitJobs([ server ]) | 257 | await waitJobs([ server ]) |
258 | 258 | ||
259 | const video = await server.videos.getWithToken({ id: uuid }) | ||
260 | const hls = video.streamingPlaylists[0] | ||
261 | |||
262 | { | 259 | { |
260 | const video = await server.videos.getWithToken({ id: uuid }) | ||
261 | const hls = video.streamingPlaylists[0] | ||
263 | const query = { videoFileToken } | 262 | const query = { videoFileToken } |
264 | const { text } = await makeRawRequest({ url: hls.playlistUrl, query, expectedStatus: HttpStatusCode.OK_200 }) | 263 | const { text } = await makeRawRequest({ url: hls.playlistUrl, query, expectedStatus: HttpStatusCode.OK_200 }) |
265 | 264 | ||