Skip to content

Commit 86e7963

Browse files
committed
Fix linting
1 parent cb1038e commit 86e7963

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib/select/select.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ describe('MdSelect', () => {
196196
fixture.componentInstance.foods = [];
197197
fixture.detectChanges();
198198

199-
expect(select.selected).toBe(null, 'Expected selection to be removed when option no longer exists.');
199+
expect(select.selected)
200+
.toBe(null, 'Expected selection to be removed when option no longer exists.');
200201
});
201202

202203
it('should display the selected option in the trigger', () => {

0 commit comments

Comments
 (0)