Skip to content

Commit

Permalink
feat(editor-content): fix naming #29871
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Sep 19, 2024
1 parent 0119b89 commit 53bd13b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { MockDotMessageService } from '@dotcms/utils-testing';

const MESSAGES_MOCK = {
const FILE_MESSAGES_MOCK = {
'dot.file.field.action.choose.file': 'Choose File',
'dot.file.field.action.create.new.file': 'Create New File',
'dot.file.field.action.create.new.file.label': 'File Name',
Expand Down Expand Up @@ -39,4 +39,4 @@ const MESSAGES_MOCK = {
'error.form.validator.required': 'This field is required'
};

export const MessageServiceMock = new MockDotMessageService(MESSAGES_MOCK);
export const MessageServiceMock = new MockDotMessageService(FILE_MESSAGES_MOCK);

0 comments on commit 53bd13b

Please sign in to comment.