Skip to content

Commit 4498851

Browse files
committed
style(material/bottom-sheet): fix tslint max-line-length exceeds issue in ci build
1 parent e77e68e commit 4498851

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/material/bottom-sheet/bottom-sheet.spec.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,8 @@ describe('MatBottomSheet', () => {
495495

496496
viewContainerFixture.detectChanges();
497497

498-
const backdrop = overlayContainerElement.querySelector('.cdk-overlay-backdrop') as HTMLElement;
498+
const backdrop =
499+
overlayContainerElement.querySelector('.cdk-overlay-backdrop') as HTMLElement;
499500
backdrop.click();
500501
viewContainerFixture.detectChanges();
501502
flush();
@@ -525,7 +526,8 @@ describe('MatBottomSheet', () => {
525526

526527
viewContainerFixture.detectChanges();
527528

528-
const backdrop = overlayContainerElement.querySelector('.cdk-overlay-backdrop') as HTMLElement;
529+
const backdrop =
530+
overlayContainerElement.querySelector('.cdk-overlay-backdrop') as HTMLElement;
529531
backdrop.click();
530532

531533
expect(overlayContainerElement.querySelector('mat-bottom-sheet-container')).toBeTruthy();

0 commit comments

Comments
 (0)