diff --git a/modules/angular2/test/core/pipes/date_pipe_spec.ts b/modules/angular2/test/core/pipes/date_pipe_spec.ts index c593749433..31ca411f03 100644 --- a/modules/angular2/test/core/pipes/date_pipe_spec.ts +++ b/modules/angular2/test/core/pipes/date_pipe_spec.ts @@ -24,9 +24,8 @@ export function main() { pipe = new DatePipe(); }); - it('should be marked as non-pure', () => { - expect(new PipeResolver().resolve(DatePipe).pure).toEqual(false); - }); + it('should be marked as non-pure', + () => { expect(new PipeResolver().resolve(DatePipe).pure).toEqual(false); }); describe("supports", () => { it("should support date", () => { expect(pipe.supports(date)).toBe(true); });