aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-08-03 11:49:39 +0200
committerChocobozzz <me@florianbigard.com>2022-08-03 11:49:39 +0200
commit84992f56069644b11f28cca2bb46277cd5912b69 (patch)
tree661b5273ccd8895d215c0c0f154b364f381387ba /server/tests/api/videos
parent5bdc34195c763be06bae262555db9fefb1852cb2 (diff)
downloadPeerTube-84992f56069644b11f28cca2bb46277cd5912b69.tar.gz
PeerTube-84992f56069644b11f28cca2bb46277cd5912b69.tar.zst
PeerTube-84992f56069644b11f28cca2bb46277cd5912b69.zip
Fix tests
Diffstat (limited to 'server/tests/api/videos')
-rw-r--r--server/tests/api/videos/video-channels.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/server/tests/api/videos/video-channels.ts b/server/tests/api/videos/video-channels.ts
index bbb9b12d6..ffe6eef73 100644
--- a/server/tests/api/videos/video-channels.ts
+++ b/server/tests/api/videos/video-channels.ts
@@ -430,7 +430,7 @@ describe('Test video channels', function () {
430 expect(body.data[1].displayName).to.equal('video channel updated') 430 expect(body.data[1].displayName).to.equal('video channel updated')
431 }) 431 })
432 432
433 it('Should create the main channel with an uuid if there is a conflict', async function () { 433 it('Should create the main channel with a suffix if there is a conflict', async function () {
434 { 434 {
435 const videoChannel = { name: 'toto_channel', displayName: 'My toto channel' } 435 const videoChannel = { name: 'toto_channel', displayName: 'My toto channel' }
436 const created = await servers[0].channels.create({ attributes: videoChannel }) 436 const created = await servers[0].channels.create({ attributes: videoChannel })
@@ -442,8 +442,7 @@ describe('Test video channels', function () {
442 const accessToken = await servers[0].login.getAccessToken({ username: 'toto', password: 'password' }) 442 const accessToken = await servers[0].login.getAccessToken({ username: 'toto', password: 'password' })
443 443
444 const { videoChannels } = await servers[0].users.getMyInfo({ token: accessToken }) 444 const { videoChannels } = await servers[0].users.getMyInfo({ token: accessToken })
445 const videoChannel = videoChannels[0] 445 expect(videoChannels[0].name).to.equal('toto_channel-1')
446 expect(videoChannel.name).to.match(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/)
447 } 446 }
448 }) 447 })
449 448