Skip to content

Commit bac0388

Browse files
authored
chore: fix bad chips merge and broken tests (#2207)
1 parent ba85883 commit bac0388

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/lib/chips/chip-list.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,17 @@ describe('MdChipList', () => {
2222
});
2323

2424
TestBed.compileComponents();
25+
}));
2526

27+
beforeEach(() => {
2628
fixture = TestBed.createComponent(StaticChipList);
2729
fixture.detectChanges();
2830

2931
chipListDebugElement = fixture.debugElement.query(By.directive(MdChipList));
3032
chipListNativeElement = chipListDebugElement.nativeElement;
3133
chipListInstance = chipListDebugElement.componentInstance;
3234
testComponent = fixture.debugElement.componentInstance;
33-
}));
35+
});
3436

3537
describe('basic behaviors', () => {
3638
it('adds the `md-chip-list` class', () => {

src/lib/chips/chip.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from '@angular/core';
1111

1212
import {MdFocusable} from '../core/a11y/list-key-manager';
13-
import {coerceBooleanProperty} from '../core/coersion/boolean-property';
13+
import {coerceBooleanProperty} from '../core/coercion/boolean-property';
1414

1515
export interface MdChipEvent {
1616
chip: MdChip;

0 commit comments

Comments
 (0)