diff --git a/apps/automated/src/ui/core/bindable/bindable-tests.ts b/apps/automated/src/ui/core/bindable/bindable-tests.ts index 10e6b6edb..c181c868a 100644 --- a/apps/automated/src/ui/core/bindable/bindable-tests.ts +++ b/apps/automated/src/ui/core/bindable/bindable-tests.ts @@ -659,17 +659,19 @@ export function test_BindingConverterCalledEvenWithNullValue() { const testPropertyValue = null; const expectedValue = 'collapsed'; pageViewModel.set('testProperty', testPropertyValue); - appModule.getResources()['converter'] = function (value) { - if (value) { - return 'visible'; - } else { - return 'collapsed'; - } + appModule.getResources()['converter'] = { + toView: function (value) { + if (value) { + return 'visible'; + } else { + return 'collapsed'; + } + }, }; const testFunc = function (views: Array) { const testLabel =