From 5bc7c4462a1b3aaed34ed4db2f010bb17d2e67bc Mon Sep 17 00:00:00 2001 From: Dieter Stinglhamber Date: Mon, 13 Sep 2021 10:35:04 +0200 Subject: [PATCH] fix typo --- packages/core/admin/server/tests/admin-api-token.test.e2e.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/admin/server/tests/admin-api-token.test.e2e.js b/packages/core/admin/server/tests/admin-api-token.test.e2e.js index 1c413a7f5b..096fa2db1f 100644 --- a/packages/core/admin/server/tests/admin-api-token.test.e2e.js +++ b/packages/core/admin/server/tests/admin-api-token.test.e2e.js @@ -23,7 +23,7 @@ const { createAuthRequest } = require('../../../../../test/helpers/request'); * 13. Updates a token with partial payload (successfully) * 14. Fails to update an api token (invalid `type` in the body) * 15. Updates a token when passing a `null` description (successfully) - * 16. Updates a token but not the description of no description is passed (successfully) + * 16. Updates a token but not the description if no description is passed (successfully) */ describe('Admin API Token CRUD (e2e)', () => { @@ -353,7 +353,7 @@ describe('Admin API Token CRUD (e2e)', () => { apiTokens[0] = res.body.data; }); - test('16. Updates a token but not the description of no description is passed (successfully)', async () => { + test('16. Updates a token but not the description if no description is passed (successfully)', async () => { const body = { name: 'api-token_tests-name', };