From 6dd4b3c6b99f4c0829cb24a395706b7877d2858a Mon Sep 17 00:00:00 2001 From: Andrew Seguin Date: Mon, 15 Aug 2022 14:30:49 -0600 Subject: [PATCH] fix(material/expansion): fix lint issue (#25469) --- src/material/expansion/expansion.spec.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/material/expansion/expansion.spec.ts b/src/material/expansion/expansion.spec.ts index 20c4fd16ac45..ae3fbc004a2c 100644 --- a/src/material/expansion/expansion.spec.ts +++ b/src/material/expansion/expansion.spec.ts @@ -61,8 +61,9 @@ describe('MatExpansionPanel', () => { it('should be able to render panel content lazily', fakeAsync(() => { const fixture = TestBed.createComponent(LazyPanelWithContent); - const content = fixture.debugElement.query(By.css('.mat-expansion-panel-content'))! - .nativeElement; + const content = fixture.debugElement.query( + By.css('.mat-expansion-panel-content'), + )!.nativeElement; fixture.detectChanges(); expect(content.textContent.trim()) @@ -79,8 +80,9 @@ describe('MatExpansionPanel', () => { it('should render the content for a lazy-loaded panel that is opened on init', fakeAsync(() => { const fixture = TestBed.createComponent(LazyPanelOpenOnLoad); - const content = fixture.debugElement.query(By.css('.mat-expansion-panel-content'))! - .nativeElement; + const content = fixture.debugElement.query( + By.css('.mat-expansion-panel-content'), + )!.nativeElement; fixture.detectChanges(); expect(content.textContent.trim())