From b7fe7ba65b1ac3e3c82447ececf77d7a3a853062 Mon Sep 17 00:00:00 2001 From: Olivia Guyot Date: Mon, 4 Nov 2024 13:37:17 +0100 Subject: [PATCH] chore(editor): fix failing test --- .../form-field-open-data/form-field-open-data.component.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.spec.ts b/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.spec.ts index 7a80d0d2fb..a72eea5c22 100644 --- a/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.spec.ts +++ b/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.spec.ts @@ -4,7 +4,7 @@ import { FormFieldOpenDataComponent } from './form-field-open-data.component' jest.mock('./../../../../fields.config', () => { return { - OPEN_DATA_LICENSES: ['CC-BY'], + OPEN_DATA_LICENSE: 'CC-BY', } })