Skip to content

Commit e8cd0d5

Browse files
committed
chore(*): fix lint errors
1 parent f98511a commit e8cd0d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe('Basic IgxPivotGrid #pivotGrid', () => {
2222
}));
2323

2424
it('should apply formatter and dataType from measures', () => {
25-
fixture.detectChanges()
25+
fixture.detectChanges();
2626
const pivotGrid = fixture.componentInstance.pivotGrid;
2727
const actualFormatterValue = pivotGrid.rowList.first.cells.first.title;
2828
expect(actualFormatterValue).toEqual('774$');
@@ -31,7 +31,7 @@ describe('Basic IgxPivotGrid #pivotGrid', () => {
3131
});
3232

3333
it('should apply css class to cells from measures', () => {
34-
fixture.detectChanges()
34+
fixture.detectChanges();
3535
const pivotGrid = fixture.componentInstance.pivotGrid;
3636
const cells = pivotGrid.rowList.first.cells;
3737
expect(cells.first.nativeElement.classList).toContain('test');

0 commit comments

Comments
 (0)