Skip to content

Commit 7d9a080

Browse files
author
INFRAGISTICS\tiliev
committed
refactor(igx-grid): Changed test component's name. #488
1 parent 8a91bd3 commit 7d9a080

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { async, fakeAsync, tick, TestBed, discardPeriodicTasks } from '@angular/core/testing';
1+
import { async, TestBed } from '@angular/core/testing';
22
import { IgxGridModule } from './grid.module';
33
import { IgxGridComponent } from './grid.component';
4-
import { Component, ViewChild, QueryList, OnInit, ElementRef, DebugElement } from '@angular/core';
4+
import { Component, ViewChild, DebugElement } from '@angular/core';
55
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
6-
import { IgxColumnComponent, IgxColumnGroupComponent } from './column.component';
6+
import { IgxColumnGroupComponent } from './column.component';
77
import { By } from '@angular/platform-browser';
88

99
const GRID_COL_THEAD_TITLE_CLASS = 'igx-grid__th-title';
@@ -20,7 +20,7 @@ describe('IgxGrid - multi-column headers', () => {
2020
declarations: [
2121
OneGroupOneColGridComponent,
2222
OneGroupThreeColsGridComponent,
23-
OneHundredColumnsGridComponent,
23+
BlueWhaleGridComponent,
2424
ColumnGroupTestComponent,
2525
ColumnGroupFourLevelTestComponent
2626
],
@@ -445,7 +445,7 @@ describe('IgxGrid - multi-column headers', () => {
445445
});
446446

447447
it('Should render column group headers correctly.', ((done) => {
448-
const fixture = TestBed.createComponent(OneHundredColumnsGridComponent);
448+
const fixture = TestBed.createComponent(BlueWhaleGridComponent);
449449
fixture.detectChanges();
450450
const componentInstance = fixture.componentInstance;
451451
const grid = componentInstance.grid;
@@ -664,7 +664,7 @@ export class ColumnGroupFourLevelTestComponent {
664664
</igx-grid>
665665
`
666666
})
667-
export class OneHundredColumnsGridComponent {
667+
export class BlueWhaleGridComponent {
668668
@ViewChild(IgxGridComponent, { read: IgxGridComponent })
669669
grid: IgxGridComponent;
670670

0 commit comments

Comments
 (0)