From 1be863a17cf8adf2a19a901580eda48f6bc0a596 Mon Sep 17 00:00:00 2001 From: Amedeo Lepore Date: Fri, 16 Dec 2022 12:53:45 +0100 Subject: [PATCH] [AAE-10778] Fix unit test: fix the class name to match the 'adf-viewer-render.image-viewer-scaling' get from the appConfigService --- lib/core/src/lib/viewer/components/img-viewer.component.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/src/lib/viewer/components/img-viewer.component.spec.ts b/lib/core/src/lib/viewer/components/img-viewer.component.spec.ts index 3bc0b8a3cf..2a9157fdfe 100644 --- a/lib/core/src/lib/viewer/components/img-viewer.component.spec.ts +++ b/lib/core/src/lib/viewer/components/img-viewer.component.spec.ts @@ -68,7 +68,7 @@ describe('Test Img viewer component ', () => { beforeEach(() => { const appConfig: AppConfigService = TestBed.inject(AppConfigService); - appConfig.config['adf-viewer.image-viewer-scaling'] = 70; + appConfig.config['adf-viewer-render.image-viewer-scaling'] = 70; component.initializeScaling(); });