Skip to content

Commit d3602b2

Browse files
committed
fix lint
1 parent 03fbdc4 commit d3602b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib/datepicker/datepicker.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,8 @@ describe('MdDatepicker', () => {
274274
testComponent.date = '1/1/2017' as any;
275275

276276
expect(() => fixture.detectChanges()).toThrowError(
277-
/Datepicker: Value must be either a date object recognized by the DateAdapter or an ISO 8601 string\. Instead got: 1\/1\/2017/);
277+
'Datepicker: Value must be either a date object recognized by the DateAdapter or an ' +
278+
'ISO 8601 string. Instead got: 1/1/2017');
278279

279280
testComponent.date = null;
280281
});

0 commit comments

Comments
 (0)