Skip to content

Commit 3f765ae

Browse files
committed
Fix linting
1 parent 5250f95 commit 3f765ae

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
@@ -189,7 +189,8 @@ describe('MdSelect', () => {
189189
fixture.componentInstance.foods = [];
190190
fixture.detectChanges();
191191

192-
expect(select.selected).toBe(null, 'Expected selection to be removed when option no longer exists.');
192+
expect(select.selected)
193+
.toBe(null, 'Expected selection to be removed when option no longer exists.');
193194
});
194195

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

0 commit comments

Comments
 (0)