]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tests/api/check-params/users.ts
Feature/description support fields length 1000 (#1267)
[github/Chocobozzz/PeerTube.git] / server / tests / api / check-params / users.ts
index cbfa0c137cd879b2cdd2ce08f8a45294d48f5b2c..ec46609a4c2f5f0ff0e84373cb8a6dc4463625b3 100644 (file)
@@ -315,7 +315,7 @@ describe('Test users API validators', function () {
 
     it('Should fail with a too long description', async function () {
       const fields = {
-        description: 'super'.repeat(60)
+        description: 'super'.repeat(201)
       }
 
       await makePutBodyRequest({ url: server.url, path: path + 'me', token: userAccessToken, fields })