Skip to content

Commit 6ed61f4

Browse files
committed
test(grid): fix lint in component name #4726
1 parent 6f23df6 commit 6ed61f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('IgxGrid - Row Selection', () => {
2828
GridSummaryComponent,
2929
GridCancelableComponent,
3030
GridFeaturesComponent,
31-
HierarchicalGridRowSelectableIsland
31+
HierarchicalGridRowSelectableIslandComponent
3232
],
3333
imports: [
3434
NoopAnimationsModule,
@@ -968,7 +968,7 @@ describe('IgxGrid - Row Selection', () => {
968968

969969
it('Set rowSelectable on HGrid row island', fakeAsync(() => {
970970
expect(() => {
971-
const fix = TestBed.createComponent(HierarchicalGridRowSelectableIsland);
971+
const fix = TestBed.createComponent(HierarchicalGridRowSelectableIslandComponent);
972972
fix.detectChanges();
973973
}).not.toThrow();
974974
}));
@@ -1153,4 +1153,4 @@ export class GridFeaturesComponent {
11531153
</igx-row-island>
11541154
</igx-hierarchical-grid>`
11551155
})
1156-
export class HierarchicalGridRowSelectableIsland extends IgxHierarchicalGridMultiLayoutComponent { }
1156+
export class HierarchicalGridRowSelectableIslandComponent extends IgxHierarchicalGridMultiLayoutComponent { }

0 commit comments

Comments
 (0)