Skip to content

Commit f41de24

Browse files
committed
chore(*): Fixed lint error in tests
1 parent b80f57e commit f41de24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

projects/igniteui-angular/src/lib/directives/radio/radio-group.directive.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe('IgxRadioGroupDirective', () => {
1414
RadioGroupComponent,
1515
RadioGroupWithModelComponent,
1616
RadioGroupReactiveFormsComponent,
17-
RadioGroupDeepProjection
17+
RadioGroupDeepProjectionComponent
1818
],
1919
imports: [
2020
IgxRadioModule,
@@ -185,7 +185,7 @@ describe('IgxRadioGroupDirective', () => {
185185
}));
186186

187187
it('Properly initialize selection when value is falsy in deep content projection', fakeAsync(() => {
188-
const fixture = TestBed.createComponent(RadioGroupDeepProjection);
188+
const fixture = TestBed.createComponent(RadioGroupDeepProjectionComponent);
189189
fixture.detectChanges();
190190
tick();
191191

@@ -295,7 +295,7 @@ class RadioGroupReactiveFormsComponent {
295295
</form>
296296
`
297297
})
298-
class RadioGroupDeepProjection {
298+
class RadioGroupDeepProjectionComponent {
299299

300300
@ViewChild(IgxRadioGroupDirective, { static: true })
301301
radioGroup: IgxRadioGroupDirective;

0 commit comments

Comments
 (0)