From 8bc92e4a6363804436dba0dc37b33b1d862019bd Mon Sep 17 00:00:00 2001 From: Markus Johnsson Date: Sun, 10 Jun 2018 19:58:32 +0200 Subject: [PATCH] Update test to reflect new behavior --- tests/cases/fourslash/codeFixAddMissingMember9.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/cases/fourslash/codeFixAddMissingMember9.ts b/tests/cases/fourslash/codeFixAddMissingMember9.ts index afe401f350b..b583cd28e9a 100644 --- a/tests/cases/fourslash/codeFixAddMissingMember9.ts +++ b/tests/cases/fourslash/codeFixAddMissingMember9.ts @@ -10,15 +10,16 @@ verify.codeFixAll({ fixId: "addMissingMember", + fixAllDescription: "Add all missing members", newFileContent: `class C { - y(x: number, arg1: string, z: boolean): any { - throw new Error("Method not implemented."); - } z: boolean = true; method() { const x = 0; this.y(x, "a", this.z); } + y(x: number, arg1: string, z: boolean): any { + throw new Error("Method not implemented."); + } }`, });