From 0e061f07794964505a976ade651932eeeee0b79f Mon Sep 17 00:00:00 2001 From: Ricardo van der Heijden <20791917+ricardovdheijden@users.noreply.github.com> Date: Fri, 13 Oct 2023 14:24:43 +0200 Subject: [PATCH] 318 Corrects description of testcases --- .../src/components/WFOWorkflowSteps/stepListUtils.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/orchestrator-ui-components/src/components/WFOWorkflowSteps/stepListUtils.spec.ts b/packages/orchestrator-ui-components/src/components/WFOWorkflowSteps/stepListUtils.spec.ts index 7e45b76e4..5a35ecdde 100644 --- a/packages/orchestrator-ui-components/src/components/WFOWorkflowSteps/stepListUtils.spec.ts +++ b/packages/orchestrator-ui-components/src/components/WFOWorkflowSteps/stepListUtils.spec.ts @@ -9,12 +9,12 @@ describe('getStepContent()', () => { confirmation_mail: 'testConfirmationMail', }; - it('returns the same object as the input if showHiddenKeys is false', () => { + it('returns the same object as the input if showHiddenKeys is true', () => { const result = getStepContent(testStepState, true); expect(result).toEqual(testStepState); }); - it('returns an object without hidden keys if showHiddenKeys is true', () => { + it('returns an object without hidden keys if showHiddenKeys is false', () => { const result = getStepContent(testStepState, false); expect(Object.keys(result).length).toEqual(2);