diff options
author | Chocobozzz <me@florianbigard.com> | 2018-05-25 09:57:16 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-05-25 10:41:07 +0200 |
commit | ad9e39fb815d85e5e718c40540fa75471474fa17 (patch) | |
tree | 960accb16bca0fac7694b3f3d5d038534b66c224 /server/tests/api/videos/video-channels.ts | |
parent | 06be7ed0b27b371465c5d1b7f92b4adfb0b866ea (diff) | |
download | PeerTube-ad9e39fb815d85e5e718c40540fa75471474fa17.tar.gz PeerTube-ad9e39fb815d85e5e718c40540fa75471474fa17.tar.zst PeerTube-ad9e39fb815d85e5e718c40540fa75471474fa17.zip |
Only use account name in routes
Diffstat (limited to 'server/tests/api/videos/video-channels.ts')
-rw-r--r-- | server/tests/api/videos/video-channels.ts | 5 |
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 35c418f7c..7ae505fd7 100644 --- a/server/tests/api/videos/video-channels.ts +++ b/server/tests/api/videos/video-channels.ts | |||
@@ -17,7 +17,6 @@ import { | |||
17 | setAccessTokensToServers, | 17 | setAccessTokensToServers, |
18 | updateVideoChannel | 18 | updateVideoChannel |
19 | } from '../../utils/index' | 19 | } from '../../utils/index' |
20 | import { getAccountsList } from '../../utils/users/accounts' | ||
21 | 20 | ||
22 | const expect = chai.expect | 21 | const expect = chai.expect |
23 | 22 | ||
@@ -99,7 +98,7 @@ describe('Test video channels', function () { | |||
99 | }) | 98 | }) |
100 | 99 | ||
101 | it('Should have two video channels when getting account channels on server 1', async function () { | 100 | it('Should have two video channels when getting account channels on server 1', async function () { |
102 | const res = await getAccountVideoChannelsList(servers[0].url, userInfo.account.uuid) | 101 | const res = await getAccountVideoChannelsList(servers[0].url, userInfo.account.name + '@' + userInfo.account.host) |
103 | expect(res.body.total).to.equal(2) | 102 | expect(res.body.total).to.equal(2) |
104 | expect(res.body.data).to.be.an('array') | 103 | expect(res.body.data).to.be.an('array') |
105 | expect(res.body.data).to.have.lengthOf(2) | 104 | expect(res.body.data).to.have.lengthOf(2) |
@@ -112,7 +111,7 @@ describe('Test video channels', function () { | |||
112 | }) | 111 | }) |
113 | 112 | ||
114 | it('Should have one video channel when getting account channels on server 2', async function () { | 113 | it('Should have one video channel when getting account channels on server 2', async function () { |
115 | const res = await getAccountVideoChannelsList(servers[1].url, userInfo.account.uuid) | 114 | const res = await getAccountVideoChannelsList(servers[1].url, userInfo.account.name + '@' + userInfo.account.host) |
116 | expect(res.body.total).to.equal(1) | 115 | expect(res.body.total).to.equal(1) |
117 | expect(res.body.data).to.be.an('array') | 116 | expect(res.body.data).to.be.an('array') |
118 | expect(res.body.data).to.have.lengthOf(1) | 117 | expect(res.body.data).to.have.lengthOf(1) |