Skip to content

Commit 1862e8d

Browse files
committed
chore(*): remove unnecessary change detection in test
1 parent 83a6fa7 commit 1862e8d

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
@@ -189,9 +189,7 @@ describe('IgxGrid - Column properties #grid', () => {
189189
expect(cityCol).not.toBeDefined();
190190

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

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

0 commit comments

Comments
 (0)