fix a few typos (#2141)

* fix a few typos

* apply changes to original files instead

* additional correction
This commit is contained in:
Lukas Winkler
2019-09-23 08:17:42 +02:00
committed by Chocobozzz
parent 210709a907
commit 32d7f2b754
10 changed files with 10 additions and 10 deletions

View File

@@ -901,7 +901,7 @@ describe('Test users API validators', function () {
await makePostBodyRequest({ url: server.url, path: registrationPath, token: server.accessToken, fields })
})
it('Should fail with a channel name that is the same than user username', async function () {
it('Should fail with a channel name that is the same as username', async function () {
const source = { username: 'super_user', channel: { name: 'super_user', displayName: 'display name' } }
const fields = immutableAssign(baseCorrectParams, source)