From e7f9924b18b58ed3103fc029a719606c9d763d8d Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Tue, 27 Oct 2015 12:58:09 -0700 Subject: [PATCH] style: clang format the code --- modules/angular2/test/core/pipes/date_pipe_spec.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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); });