Skip to content

Commit

Permalink
fix(color-picker): fix component name of test file
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbin committed Feb 28, 2020
1 parent 1556585 commit 1558dad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions projects/extensions/color-picker/color-picker.component.spec.ts
Original file line number Diff line number Diff line change
@@ -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<ColorPickerComponent>;
describe('MtxColorPickerComponent', () => {
let component: MtxColorPickerComponent;
let fixture: ComponentFixture<MtxColorPickerComponent>;

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ColorPickerComponent ]
declarations: [ MtxColorPickerComponent ]
})
.compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(ColorPickerComponent);
fixture = TestBed.createComponent(MtxColorPickerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
Expand Down

0 comments on commit 1558dad

Please sign in to comment.