Skip to content

Commit e3dd376

Browse files
committed
chore(*): remove unnecessary change detection in test
1 parent 178a126 commit e3dd376

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,7 @@ describe('IgxGrid - Column properties #grid', () => {
190190
expect(cityCol).not.toBeDefined();
191191

192192
// add to pinned area
193-
fix.componentInstance.columns.push({ field: 'City', width: 150, movable: true, type: 'string', pinned: true });
194-
fix.detectChanges();
195-
193+
fix.componentInstance.columns.push({ field: 'City', width: 150, movable: true, type: 'string', pinned: true });
196194
fix.detectChanges();
197195

198196
cityCol = grid.getColumnByName('City');

0 commit comments

Comments
 (0)