Skip to content

Commit 6899c98

Browse files
committed
chore(*): fixing lint error
1 parent a3d7923 commit 6899c98

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -384,15 +384,12 @@ describe('IgxGrid - Deferred Column Resizing #grid', () => {
384384
}));
385385

386386
it('should autosize column programmatically based only on header.', fakeAsync(() => {
387-
const fixture = TestBed.createComponent(LargePinnedColGridComponent);
388-
fixture.detectChanges();
389-
390387
const column = fixture.componentInstance.grid.columnList.filter(c => c.field === 'ReleaseDate')[0];
391388
expect(column.width).toEqual('100px');
392-
389+
393390
column.autosize(true);
394391
fixture.detectChanges();
395-
392+
396393
expect(parseInt(column.width, 10)).toEqual(111);
397394
}));
398395

0 commit comments

Comments
 (0)