X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Futils%2Fpods.js;h=25b97edec99685dce89f5996c80cb2147b8aae76;hb=a4254ea1738d3b963fd4ccb995ab63f70656d6c0;hp=a8551a49dc108358c9b4da3650d3921e81d4f259;hpb=49abbbbedca83b9031d3e2eb3ae9ad9b6a7d96ed;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/utils/pods.js b/server/tests/utils/pods.js index a8551a49d..25b97edec 100644 --- a/server/tests/utils/pods.js +++ b/server/tests/utils/pods.js @@ -30,25 +30,25 @@ function makeFriends (url, accessToken, expectedStatus, end) { // Which pod makes friends with which pod const friendsMatrix = { 'http://localhost:9001': [ - 'http://localhost:9002' + 'localhost:9002' ], 'http://localhost:9002': [ - 'http://localhost:9003' + 'localhost:9003' ], 'http://localhost:9003': [ - 'http://localhost:9001' + 'localhost:9001' ], 'http://localhost:9004': [ - 'http://localhost:9002' + 'localhost:9002' ], 'http://localhost:9005': [ - 'http://localhost:9001', - 'http://localhost:9004' + 'localhost:9001', + 'localhost:9004' ], 'http://localhost:9006': [ - 'http://localhost:9001', - 'http://localhost:9002', - 'http://localhost:9003' + 'localhost:9001', + 'localhost:9002', + 'localhost:9003' ] } const path = '/api/v1/pods/makefriends' @@ -58,7 +58,7 @@ function makeFriends (url, accessToken, expectedStatus, end) { .post(path) .set('Accept', 'application/json') .set('Authorization', 'Bearer ' + accessToken) - .send({ 'urls': friendsMatrix[url] }) + .send({ 'hosts': friendsMatrix[url] }) .expect(expectedStatus) .end(function (err, res) { if (err) throw err