diff options
Diffstat (limited to 'server/tests/api/check-params/video-abuses.js')
-rw-r--r-- | server/tests/api/check-params/video-abuses.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/api/check-params/video-abuses.js b/server/tests/api/check-params/video-abuses.js index 6dc5a7090..8c520aab4 100644 --- a/server/tests/api/check-params/video-abuses.js +++ b/server/tests/api/check-params/video-abuses.js | |||
@@ -129,7 +129,7 @@ describe('Test video abuses API validators', function () { | |||
129 | const basePath = '/api/v1/videos/' | 129 | const basePath = '/api/v1/videos/' |
130 | 130 | ||
131 | it('Should fail with nothing', function (done) { | 131 | it('Should fail with nothing', function (done) { |
132 | const path = basePath + server.video + '/abuse' | 132 | const path = basePath + server.video.id + '/abuse' |
133 | const data = {} | 133 | const data = {} |
134 | requestsUtils.makePostBodyRequest(server.url, path, server.accessToken, data, done) | 134 | requestsUtils.makePostBodyRequest(server.url, path, server.accessToken, data, done) |
135 | }) | 135 | }) |
@@ -142,7 +142,7 @@ describe('Test video abuses API validators', function () { | |||
142 | 142 | ||
143 | it('Should fail with a non authenticated user', function (done) { | 143 | it('Should fail with a non authenticated user', function (done) { |
144 | const data = {} | 144 | const data = {} |
145 | const path = basePath + server.video + '/abuse' | 145 | const path = basePath + server.video.id + '/abuse' |
146 | requestsUtils.makePostBodyRequest(server.url, path, 'hello', data, done, 401) | 146 | requestsUtils.makePostBodyRequest(server.url, path, 'hello', data, done, 401) |
147 | }) | 147 | }) |
148 | 148 | ||
@@ -150,7 +150,7 @@ describe('Test video abuses API validators', function () { | |||
150 | const data = { | 150 | const data = { |
151 | reason: 'h' | 151 | reason: 'h' |
152 | } | 152 | } |
153 | const path = basePath + server.video + '/abuse' | 153 | const path = basePath + server.video.id + '/abuse' |
154 | requestsUtils.makePostBodyRequest(server.url, path, server.accessToken, data, done) | 154 | requestsUtils.makePostBodyRequest(server.url, path, server.accessToken, data, done) |
155 | }) | 155 | }) |
156 | 156 | ||
@@ -161,7 +161,7 @@ describe('Test video abuses API validators', function () { | |||
161 | '0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef' + | 161 | '0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef' + |
162 | '0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef' | 162 | '0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef' |
163 | } | 163 | } |
164 | const path = basePath + server.video + '/abuse' | 164 | const path = basePath + server.video.id + '/abuse' |
165 | requestsUtils.makePostBodyRequest(server.url, path, server.accessToken, data, done) | 165 | requestsUtils.makePostBodyRequest(server.url, path, server.accessToken, data, done) |
166 | }) | 166 | }) |
167 | }) | 167 | }) |