diff --git a/projects/extensions/color-picker/color-picker.component.spec.ts b/projects/extensions/color-picker/color-picker.component.spec.ts index 625569f0..f58cd387 100644 --- a/projects/extensions/color-picker/color-picker.component.spec.ts +++ b/projects/extensions/color-picker/color-picker.component.spec.ts @@ -1,20 +1,20 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { ColorPickerComponent } from './color-picker.component'; +import { MtxColorPickerComponent } from './color-picker.component'; -describe('ColorPickerComponent', () => { - let component: ColorPickerComponent; - let fixture: ComponentFixture; +describe('MtxColorPickerComponent', () => { + let component: MtxColorPickerComponent; + let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ ColorPickerComponent ] + declarations: [ MtxColorPickerComponent ] }) .compileComponents(); })); beforeEach(() => { - fixture = TestBed.createComponent(ColorPickerComponent); + fixture = TestBed.createComponent(MtxColorPickerComponent); component = fixture.componentInstance; fixture.detectChanges(); });