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); }); });