aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/feeds/feeds.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-10-21 14:42:31 +0200
committerChocobozzz <chocobozzz@cpy.re>2022-10-24 14:48:24 +0200
commitb3ce36069f90dcc0a0fab41d8c77f8722774544d (patch)
treef212ddb627e3cf1cfaab5dca040e769814759892 /server/tests/feeds/feeds.ts
parent0177101284509ad68c5e484bce0474f57069c006 (diff)
downloadPeerTube-b3ce36069f90dcc0a0fab41d8c77f8722774544d.tar.gz
PeerTube-b3ce36069f90dcc0a0fab41d8c77f8722774544d.tar.zst
PeerTube-b3ce36069f90dcc0a0fab41d8c77f8722774544d.zip
Prevent concurrency issues when sending m3u8 file
Diffstat (limited to 'server/tests/feeds/feeds.ts')
-rw-r--r--server/tests/feeds/feeds.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tests/feeds/feeds.ts b/server/tests/feeds/feeds.ts
index c49175d5e..906dab1a3 100644
--- a/server/tests/feeds/feeds.ts
+++ b/server/tests/feeds/feeds.ts
@@ -314,7 +314,7 @@ describe('Test syndication feeds', () => {
314 const jsonObj = JSON.parse(json) 314 const jsonObj = JSON.parse(json)
315 const imageUrl = jsonObj.icon 315 const imageUrl = jsonObj.icon
316 expect(imageUrl).to.include('/lazy-static/avatars/') 316 expect(imageUrl).to.include('/lazy-static/avatars/')
317 await makeRawRequest({ url: imageUrl }) 317 await makeRawRequest({ url: imageUrl, expectedStatus: HttpStatusCode.OK_200 })
318 }) 318 })
319 }) 319 })
320 320