Skip to content

Commit a7b3a7b

Browse files
committed
test(filtering): Update clickElemAndBlur method calls #4967
1 parent fc0fb5d commit a7b3a7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1595,7 +1595,7 @@ describe('IgxGrid - Filtering actions', () => {
15951595
expect(filterChip.componentInstance.selected).toBeTruthy();
15961596

15971597
// Click on the chip to commit it
1598-
ClickElemAndBlur(filterChip, input);
1598+
clickElemAndBlur(filterChip, input);
15991599
await wait(200);
16001600
fix.detectChanges();
16011601
expect(filterChip.componentInstance.selected).toBeFalsy();
@@ -1607,7 +1607,7 @@ describe('IgxGrid - Filtering actions', () => {
16071607
expect(filterChip.componentInstance.selected).toBeTruthy();
16081608

16091609
// Click on the chip to commit it
1610-
ClickElemAndBlur(filterChip, input);
1610+
clickElemAndBlur(filterChip, input);
16111611
await wait(100);
16121612
fix.detectChanges();
16131613
expect(filterChip.componentInstance.selected).toBeFalsy();
@@ -1628,7 +1628,7 @@ describe('IgxGrid - Filtering actions', () => {
16281628
expect(filterChip.componentInstance.selected).toBeTruthy();
16291629

16301630
// Click on the chip to commit it
1631-
ClickElemAndBlur(filterChip, input);
1631+
clickElemAndBlur(filterChip, input);
16321632
fix.detectChanges();
16331633
await wait(100);
16341634
expect(filterChip.componentInstance.selected).toBeFalsy();

0 commit comments

Comments
 (0)