diff options
Diffstat (limited to 'server/tests/api/check-params/bulk.ts')
-rw-r--r-- | server/tests/api/check-params/bulk.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/api/check-params/bulk.ts b/server/tests/api/check-params/bulk.ts index 3f80c79a8..69ff7dd96 100644 --- a/server/tests/api/check-params/bulk.ts +++ b/server/tests/api/check-params/bulk.ts | |||
@@ -23,9 +23,9 @@ describe('Test bulk API validators', function () { | |||
23 | await setAccessTokensToServers([ server ]) | 23 | await setAccessTokensToServers([ server ]) |
24 | 24 | ||
25 | const user = { username: 'user1', password: 'password' } | 25 | const user = { username: 'user1', password: 'password' } |
26 | await server.usersCommand.create({ username: user.username, password: user.password }) | 26 | await server.users.create({ username: user.username, password: user.password }) |
27 | 27 | ||
28 | userAccessToken = await server.loginCommand.getAccessToken(user) | 28 | userAccessToken = await server.login.getAccessToken(user) |
29 | }) | 29 | }) |
30 | 30 | ||
31 | describe('When removing comments of', function () { | 31 | describe('When removing comments of', function () { |