From 88141d82d5a73657bf9616f5629023e4448ad7d8 Mon Sep 17 00:00:00 2001 From: Christoph Hinssen Date: Tue, 5 Oct 2021 06:45:11 +0200 Subject: [PATCH] GH-13807 review feedback --- .../cpq-configurator-page-layout-handler.spec.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/feature-libs/product-configurator/rulebased/root/cpq/cpq-configurator-page-layout-handler.spec.ts b/feature-libs/product-configurator/rulebased/root/cpq/cpq-configurator-page-layout-handler.spec.ts index ee1de315f01..d091ca1e562 100644 --- a/feature-libs/product-configurator/rulebased/root/cpq/cpq-configurator-page-layout-handler.spec.ts +++ b/feature-libs/product-configurator/rulebased/root/cpq/cpq-configurator-page-layout-handler.spec.ts @@ -36,7 +36,7 @@ const sectionHeader = 'header'; const sectionContent = 'content'; describe('CpqConfiguratorPageLayoutHandler', () => { - let serviceUnderTest: CpqConfiguratorPageLayoutHandler; + let classUnderTest: CpqConfiguratorPageLayoutHandler; beforeEach( waitForAsync(() => { @@ -51,20 +51,20 @@ describe('CpqConfiguratorPageLayoutHandler', () => { }) ); beforeEach(() => { - serviceUnderTest = TestBed.inject( + classUnderTest = TestBed.inject( CpqConfiguratorPageLayoutHandler as Type ); }); it('should create service', () => { - expect(serviceUnderTest).toBeDefined(); + expect(classUnderTest).toBeDefined(); }); it('should not touch slots for section different than header', () => { let slots$ = cold('-a', { a: contentSlots, }); - const handledSlots$ = serviceUnderTest.handle( + const handledSlots$ = classUnderTest.handle( slots$, pageTemplateCpq, sectionContent @@ -80,7 +80,7 @@ describe('CpqConfiguratorPageLayoutHandler', () => { let slots$ = cold('-a-a', { a: headerSlots, }); - const handledSlots$ = serviceUnderTest.handle( + const handledSlots$ = classUnderTest.handle( slots$, pageTemplateCpq, sectionHeader @@ -100,7 +100,7 @@ describe('CpqConfiguratorPageLayoutHandler', () => { let slots$ = cold('-aaa', { a: headerSlots, }); - const handledSlots$ = serviceUnderTest.handle( + const handledSlots$ = classUnderTest.handle( slots$, pageTemplateCpq, sectionHeader @@ -116,7 +116,7 @@ describe('CpqConfiguratorPageLayoutHandler', () => { let slots$ = cold('-a-a', { a: headerSlots, }); - const handledSlots$ = serviceUnderTest.handle( + const handledSlots$ = classUnderTest.handle( slots$, pageTemplateOther, sectionHeader