diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-12-24 16:59:17 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-12-24 16:59:17 +0100 |
commit | 7920c273a204e2469416a30b752b12ccd3160102 (patch) | |
tree | 5b3d9ab9596dd5eb079a281f82b836e03eff1617 /server/tests/api/check-params.js | |
parent | 3897209f46f4c4581be2b8963bf9acc28ca5032b (diff) | |
download | PeerTube-7920c273a204e2469416a30b752b12ccd3160102.tar.gz PeerTube-7920c273a204e2469416a30b752b12ccd3160102.tar.zst PeerTube-7920c273a204e2469416a30b752b12ccd3160102.zip |
Move tags in another table
Diffstat (limited to 'server/tests/api/check-params.js')
-rw-r--r-- | server/tests/api/check-params.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/api/check-params.js b/server/tests/api/check-params.js index d9e51770c..9aecc3720 100644 --- a/server/tests/api/check-params.js +++ b/server/tests/api/check-params.js | |||
@@ -456,7 +456,7 @@ describe('Test parameters validator', function () { | |||
456 | }) | 456 | }) |
457 | }) | 457 | }) |
458 | 458 | ||
459 | it('Should fail without a mongodb id', function (done) { | 459 | it('Should fail without a correct uuid', function (done) { |
460 | request(server.url) | 460 | request(server.url) |
461 | .get(path + 'coucou') | 461 | .get(path + 'coucou') |
462 | .set('Accept', 'application/json') | 462 | .set('Accept', 'application/json') |
@@ -481,7 +481,7 @@ describe('Test parameters validator', function () { | |||
481 | .expect(400, done) | 481 | .expect(400, done) |
482 | }) | 482 | }) |
483 | 483 | ||
484 | it('Should fail without a mongodb id', function (done) { | 484 | it('Should fail without a correct uuid', function (done) { |
485 | request(server.url) | 485 | request(server.url) |
486 | .delete(path + 'hello') | 486 | .delete(path + 'hello') |
487 | .set('Authorization', 'Bearer ' + server.accessToken) | 487 | .set('Authorization', 'Bearer ' + server.accessToken) |