From 1f808f009685797ab107d51cb40a3733834b27c4 Mon Sep 17 00:00:00 2001 From: Yura Bondarenko Date: Fri, 4 Mar 2022 10:19:09 +0100 Subject: [PATCH] 87242: Fix workspace/workflow confusion in spec names --- .../submission/sections/form/section-form.component.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/submission/sections/form/section-form.component.spec.ts b/src/app/submission/sections/form/section-form.component.spec.ts index 09fd6fa991..7dea922b6b 100644 --- a/src/app/submission/sections/form/section-form.component.spec.ts +++ b/src/app/submission/sections/form/section-form.component.spec.ts @@ -364,11 +364,11 @@ describe('SubmissionSectionFormComponent test suite', () => { expect((comp as any).inCurrentSubmissionScope('dc.title')).toBe(true); }); - it('should return true for fields scoped to workflow', () => { + it('should return true for fields scoped to workspace', () => { expect((comp as any).inCurrentSubmissionScope('scoped.workspace')).toBe(true); }); - it('should return false for fields scoped to workspace', () => { + it('should return false for fields scoped to workflow', () => { expect((comp as any).inCurrentSubmissionScope('scoped.workflow')).toBe(false); }); });