Skip to content

Commit ab8f6fe

Browse files
committed
fix(material/expansion): fix lint issue (#25469)
(cherry picked from commit 6dd4b3c)
1 parent 27bf7e9 commit ab8f6fe

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/material/expansion/expansion.spec.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ describe('MatExpansionPanel', () => {
6161

6262
it('should be able to render panel content lazily', fakeAsync(() => {
6363
const fixture = TestBed.createComponent(LazyPanelWithContent);
64-
const content = fixture.debugElement.query(By.css('.mat-expansion-panel-content'))!
65-
.nativeElement;
64+
const content = fixture.debugElement.query(
65+
By.css('.mat-expansion-panel-content'),
66+
)!.nativeElement;
6667
fixture.detectChanges();
6768

6869
expect(content.textContent.trim())
@@ -79,8 +80,9 @@ describe('MatExpansionPanel', () => {
7980

8081
it('should render the content for a lazy-loaded panel that is opened on init', fakeAsync(() => {
8182
const fixture = TestBed.createComponent(LazyPanelOpenOnLoad);
82-
const content = fixture.debugElement.query(By.css('.mat-expansion-panel-content'))!
83-
.nativeElement;
83+
const content = fixture.debugElement.query(
84+
By.css('.mat-expansion-panel-content'),
85+
)!.nativeElement;
8486
fixture.detectChanges();
8587

8688
expect(content.textContent.trim())

0 commit comments

Comments
 (0)