@@ -3740,7 +3740,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
37403740 const listItems = GridFunctions . getExcelStyleSearchComponentListItems ( fix , searchComponent ) ;
37413741 expect ( listItems . length ) . toBe ( 3 , 'incorrect rendered list items count' ) ;
37423742 expect ( listItems [ 0 ] . innerText ) . toBe ( 'Select all search results' ) ;
3743- expect ( listItems [ 2 ] . innerText ) . toBe ( 'false ' ) ;
3743+ expect ( listItems [ 2 ] . innerText ) . toBe ( 'False ' ) ;
37443744 } ) ) ;
37453745
37463746 it ( 'should scroll items in search list correctly' , ( async ( ) => {
@@ -4071,7 +4071,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
40714071 tick ( 100 ) ;
40724072 fix . detectChanges ( ) ;
40734073 verifyExcelStyleFilterAvailableOptions ( fix ,
4074- [ 'Select All' , '(Blanks)' , 'false ' , 'true ' ] ,
4074+ [ 'Select All' , '(Blanks)' , 'False ' , 'True ' ] ,
40754075 [ true , true , true , true ] ) ;
40764076
40774077 toggleExcelStyleFilteringItems ( fix , true , 3 ) ;
@@ -4082,7 +4082,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
40824082 tick ( 100 ) ;
40834083 fix . detectChanges ( ) ;
40844084 verifyExcelStyleFilterAvailableOptions ( fix ,
4085- [ 'Select All' , '(Blanks)' , 'false ' , 'true ' ] ,
4085+ [ 'Select All' , '(Blanks)' , 'False ' , 'True ' ] ,
40864086 [ null , true , true , false ] ) ;
40874087
40884088 GridFunctions . clickExcelFilterIcon ( fix , 'Downloads' ) ;
@@ -4108,7 +4108,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
41084108 tick ( 100 ) ;
41094109 fix . detectChanges ( ) ;
41104110 verifyExcelStyleFilterAvailableOptions ( fix ,
4111- [ 'Select All' , '(Blanks)' , 'false ' , 'true ' ] ,
4111+ [ 'Select All' , '(Blanks)' , 'False ' , 'True ' ] ,
41124112 [ null , true , true , false ] ) ;
41134113
41144114 GridFunctions . clickExcelFilterIcon ( fix , 'ProductName' ) ;
0 commit comments