From 3f8bc13dc21721f9c5f2eeb1cd7d229dbd93aa36 Mon Sep 17 00:00:00 2001 From: kurilova Date: Thu, 22 Aug 2024 09:00:19 +0000 Subject: [PATCH] Fix tests --- modules/ui/src/app/components/callout/callout.component.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/src/app/components/callout/callout.component.spec.ts b/modules/ui/src/app/components/callout/callout.component.spec.ts index 53e76a814..9d8605275 100644 --- a/modules/ui/src/app/components/callout/callout.component.spec.ts +++ b/modules/ui/src/app/components/callout/callout.component.spec.ts @@ -45,7 +45,7 @@ describe('CalloutComponent', () => { describe('closeable', () => { beforeEach(() => { - component.closable = true; + fixture.componentRef.setInput('closable', true); fixture.detectChanges(); });