diff options
Diffstat (limited to 'server/tests/api')
-rw-r--r-- | server/tests/api/check-params/users.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tests/api/check-params/users.ts b/server/tests/api/check-params/users.ts index 55094795c..9d7ff8984 100644 --- a/server/tests/api/check-params/users.ts +++ b/server/tests/api/check-params/users.ts | |||
@@ -901,7 +901,7 @@ describe('Test users API validators', function () { | |||
901 | await makePostBodyRequest({ url: server.url, path: registrationPath, token: server.accessToken, fields }) | 901 | await makePostBodyRequest({ url: server.url, path: registrationPath, token: server.accessToken, fields }) |
902 | }) | 902 | }) |
903 | 903 | ||
904 | it('Should fail with a channel name that is the same than user username', async function () { | 904 | it('Should fail with a channel name that is the same as username', async function () { |
905 | const source = { username: 'super_user', channel: { name: 'super_user', displayName: 'display name' } } | 905 | const source = { username: 'super_user', channel: { name: 'super_user', displayName: 'display name' } } |
906 | const fields = immutableAssign(baseCorrectParams, source) | 906 | const fields = immutableAssign(baseCorrectParams, source) |
907 | 907 | ||