From e1d8dcb4f6a9efe0bd79a4afa9b76d9b4758b67e Mon Sep 17 00:00:00 2001 From: Klaus Meinhardt Date: Fri, 18 Jan 2019 23:30:01 +0100 Subject: [PATCH] fix lint --- types/jasmine/jasmine-tests.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/types/jasmine/jasmine-tests.ts b/types/jasmine/jasmine-tests.ts index 47cc77895c..66b98c4b0d 100644 --- a/types/jasmine/jasmine-tests.ts +++ b/types/jasmine/jasmine-tests.ts @@ -725,12 +725,12 @@ describe("A spy, when created manually", () => { describe("Multiple spies, when created manually", () => { class Tape { private rewindTo: number; - play(): void { }; - pause(): void { }; + play(): void { } + pause(): void { } rewind(pos: number): void { this.rewindTo = pos; - }; - stop(): void { }; + } + stop(): void { } readonly isPlaying: boolean; // spy obj makes this writable }