Skip to content

Commit 3a6f55a

Browse files
committed
fix(tests): Updated False True expected values
1 parent 62c9d0f commit 3a6f55a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid-filtering-ui.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3672,7 +3672,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
36723672
const listItems = GridFunctions.getExcelStyleSearchComponentListItems(fix, searchComponent);
36733673
expect(listItems.length).toBe(3, 'incorrect rendered list items count');
36743674
expect(listItems[0].innerText).toBe('Select all search results');
3675-
expect(listItems[2].innerText).toBe('false');
3675+
expect(listItems[2].innerText).toBe('False');
36763676
}));
36773677

36783678
it('should scroll items in search list correctly', (async () => {
@@ -4005,7 +4005,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
40054005
tick(100);
40064006
fix.detectChanges();
40074007
verifyExcelStyleFilterAvailableOptions(fix,
4008-
['Select All', '(Blanks)', 'false', 'true'],
4008+
['Select All', '(Blanks)', 'False', 'True'],
40094009
[true, true, true, true]);
40104010

40114011
toggleExcelStyleFilteringItems(fix, true, 3);
@@ -4016,7 +4016,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
40164016
tick(100);
40174017
fix.detectChanges();
40184018
verifyExcelStyleFilterAvailableOptions(fix,
4019-
['Select All', '(Blanks)', 'false', 'true'],
4019+
['Select All', '(Blanks)', 'False', 'True'],
40204020
[null, true, true, false]);
40214021

40224022
GridFunctions.clickExcelFilterIcon(fix, 'Downloads');
@@ -4042,7 +4042,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
40424042
tick(100);
40434043
fix.detectChanges();
40444044
verifyExcelStyleFilterAvailableOptions(fix,
4045-
['Select All', '(Blanks)', 'false', 'true'],
4045+
['Select All', '(Blanks)', 'False', 'True'],
40464046
[null, true, true, false]);
40474047

40484048
GridFunctions.clickExcelFilterIcon(fix, 'ProductName');

0 commit comments

Comments
 (0)