diff options
Diffstat (limited to 'server/tests/api/videos')
-rw-r--r-- | server/tests/api/videos/video-nsfw.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/tests/api/videos/video-nsfw.ts b/server/tests/api/videos/video-nsfw.ts index 370e69d2a..891148b07 100644 --- a/server/tests/api/videos/video-nsfw.ts +++ b/server/tests/api/videos/video-nsfw.ts | |||
@@ -34,7 +34,7 @@ describe('Test video NSFW policy', function () { | |||
34 | return getMyUserInformation(server.url, server.accessToken) | 34 | return getMyUserInformation(server.url, server.accessToken) |
35 | .then(res => { | 35 | .then(res => { |
36 | const user: User = res.body | 36 | const user: User = res.body |
37 | const videoChannelUUID = user.videoChannels[0].uuid | 37 | const videoChannelName = user.videoChannels[0].name |
38 | const accountName = user.account.name + '@' + user.account.host | 38 | const accountName = user.account.name + '@' + user.account.host |
39 | 39 | ||
40 | if (token) { | 40 | if (token) { |
@@ -42,7 +42,7 @@ describe('Test video NSFW policy', function () { | |||
42 | getVideosListWithToken(server.url, token, query), | 42 | getVideosListWithToken(server.url, token, query), |
43 | searchVideoWithToken(server.url, 'n', token, query), | 43 | searchVideoWithToken(server.url, 'n', token, query), |
44 | getAccountVideos(server.url, token, accountName, 0, 5, undefined, query), | 44 | getAccountVideos(server.url, token, accountName, 0, 5, undefined, query), |
45 | getVideoChannelVideos(server.url, token, videoChannelUUID, 0, 5, undefined, query) | 45 | getVideoChannelVideos(server.url, token, videoChannelName, 0, 5, undefined, query) |
46 | ]) | 46 | ]) |
47 | } | 47 | } |
48 | 48 | ||
@@ -50,7 +50,7 @@ describe('Test video NSFW policy', function () { | |||
50 | getVideosList(server.url), | 50 | getVideosList(server.url), |
51 | searchVideo(server.url, 'n'), | 51 | searchVideo(server.url, 'n'), |
52 | getAccountVideos(server.url, undefined, accountName, 0, 5), | 52 | getAccountVideos(server.url, undefined, accountName, 0, 5), |
53 | getVideoChannelVideos(server.url, undefined, videoChannelUUID, 0, 5) | 53 | getVideoChannelVideos(server.url, undefined, videoChannelName, 0, 5) |
54 | ]) | 54 | ]) |
55 | }) | 55 | }) |
56 | } | 56 | } |