From b7b30aab460541ee2f34052b1148ba65f5b0d763 Mon Sep 17 00:00:00 2001 From: Arthur Ozga Date: Fri, 4 Nov 2016 16:36:28 -0700 Subject: [PATCH] Add straggling Test --- .../codeFixUnImplementedInterfaceTypeParamOnProperty.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cases/fourslash/codeFixUnImplementedInterfaceTypeParamOnProperty.ts b/tests/cases/fourslash/codeFixUnImplementedInterfaceTypeParamOnProperty.ts index 8c32be6b7f4..83299f10ecf 100644 --- a/tests/cases/fourslash/codeFixUnImplementedInterfaceTypeParamOnProperty.ts +++ b/tests/cases/fourslash/codeFixUnImplementedInterfaceTypeParamOnProperty.ts @@ -1,12 +1,12 @@ /// //// interface I { -//// f1(); +//// f(); //// } //// //// class C implements I {[| |]} -verify.rangeAfterCodeFix(`f1(){ +verify.rangeAfterCodeFix(`f(){ throw new Error('Method not Implemented'); } -`); \ No newline at end of file +`); \ No newline at end of file