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 }