File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff 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 ( ) )
You can’t perform that action at this time.
0 commit comments