From e0ce4352c991dc97a66587da02e31c551cff741c Mon Sep 17 00:00:00 2001 From: Marc Date: Tue, 25 Apr 2023 16:21:13 +0200 Subject: [PATCH] Update api-tests/core/admin/ee/review-workflows.test.api.js Co-authored-by: Jamie Howard <48524071+jhoward1994@users.noreply.github.com> --- api-tests/core/admin/ee/review-workflows.test.api.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-tests/core/admin/ee/review-workflows.test.api.js b/api-tests/core/admin/ee/review-workflows.test.api.js index bebe7958f1..879b405768 100644 --- a/api-tests/core/admin/ee/review-workflows.test.api.js +++ b/api-tests/core/admin/ee/review-workflows.test.api.js @@ -503,8 +503,8 @@ describeOnCondition(edition === 'EE')('Review workflows', () => { test('When content exists in a review stage and this stage is deleted, the content should be moved to the nearest available stage', async () => { const products = await findAll(productUID); - // Move the first half of the entries to the last stage, - // and the second half to the first stage + // Move half of the entries to the last stage, + // and the other half to the first stage await mapAsync(products.results, async (entity) => updateEntry(productUID, entity.id, { [ENTITY_STAGE_ATTRIBUTE]: entity.id % 2 ? defaultStage.id : secondStage.id,