diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/date-picker/property-editor-ui-date-picker.test.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/date-picker/property-editor-ui-date-picker.test.ts index 910c0b7e1c..7ccf2fdcd4 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/property-editors/date-picker/property-editor-ui-date-picker.test.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/property-editors/date-picker/property-editor-ui-date-picker.test.ts @@ -67,7 +67,7 @@ describe('UmbPropertyEditorUIDatePickerElement', () => { }); it('should disregard a non-datetime value', async () => { - element.value = '03/05/2024 10:44:00'; + element.value = 'some value'; await element.updateComplete; expect((element as any)._inputValue).to.be.undefined; });