aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--server/tests/api/videos/video-imports.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/api/videos/video-imports.ts b/server/tests/api/videos/video-imports.ts
index 80215f038..878452ed2 100644
--- a/server/tests/api/videos/video-imports.ts
+++ b/server/tests/api/videos/video-imports.ts
@@ -23,9 +23,8 @@ async function checkVideosServer1 (server: PeerTubeServer, idHttp: string, idMag
23 const videoHttp = await server.videos.get({ id: idHttp }) 23 const videoHttp = await server.videos.get({ id: idHttp })
24 24
25 expect(videoHttp.name).to.equal('small video - youtube') 25 expect(videoHttp.name).to.equal('small video - youtube')
26 // FIXME: youtube-dl seems broken 26 expect(videoHttp.category.label).to.equal('News & Politics')
27 // expect(videoHttp.category.label).to.equal('News & Politics') 27 expect(videoHttp.licence.label).to.equal('Attribution')
28 // expect(videoHttp.licence.label).to.equal('Attribution')
29 expect(videoHttp.language.label).to.equal('Unknown') 28 expect(videoHttp.language.label).to.equal('Unknown')
30 expect(videoHttp.nsfw).to.be.false 29 expect(videoHttp.nsfw).to.be.false
31 expect(videoHttp.description).to.equal('this is a super description') 30 expect(videoHttp.description).to.equal('this is a super description')
@@ -460,7 +459,8 @@ describe('Test video imports', function () {
460 }) 459 })
461 } 460 }
462 461
463 runSuite('youtube-dl') 462 // FIXME: youtube-dl seems broken
463 // runSuite('youtube-dl')
464 464
465 runSuite('yt-dlp') 465 runSuite('yt-dlp')
466 466