File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
src/material/autocomplete Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -2617,7 +2617,8 @@ describe('MatAutocomplete', () => {
26172617 tick ( ) ;
26182618
26192619 Promise . resolve ( ) . then ( ( ) => {
2620- const panel = overlayContainerElement . querySelector ( '.mat-autocomplete-panel' ) as HTMLElement ;
2620+ const panel =
2621+ overlayContainerElement . querySelector ( '.mat-autocomplete-panel' ) as HTMLElement ;
26212622 const visibleClass = 'mat-autocomplete-visible' ;
26222623
26232624 fixture . detectChanges ( ) ;
@@ -2633,7 +2634,8 @@ describe('MatAutocomplete', () => {
26332634 zone . simulateZoneExit ( ) ;
26342635 fixture . detectChanges ( ) ;
26352636
2636- const options = overlayContainerElement . querySelectorAll ( 'mat-option' ) as NodeListOf < HTMLElement > ;
2637+ const options =
2638+ overlayContainerElement . querySelectorAll ( 'mat-option' ) as NodeListOf < HTMLElement > ;
26372639 const spy = fixture . componentInstance . optionSelected ;
26382640
26392641 options [ 1 ] . click ( ) ;
@@ -2661,7 +2663,8 @@ describe('MatAutocomplete', () => {
26612663 tick ( ) ;
26622664 fixture . detectChanges ( ) ;
26632665
2664- const options = overlayContainerElement . querySelectorAll ( 'mat-option' ) as NodeListOf < HTMLElement > ;
2666+ const options =
2667+ overlayContainerElement . querySelectorAll ( 'mat-option' ) as NodeListOf < HTMLElement > ;
26652668 const spy = fixture . componentInstance . optionSelected ;
26662669
26672670 options [ 3 ] . click ( ) ;
You can’t perform that action at this time.
0 commit comments