From c4bcb499e3b51ece71f84291c7ec5aedb83ff587 Mon Sep 17 00:00:00 2001 From: Balaji Krishnan Date: Mon, 29 Feb 2016 19:31:47 -0800 Subject: [PATCH] update InteractiveIntroduceVariable test after.. .. new use var options. If you don't set options, you get default options. --- .../CodeActions/InteractiveIntroduceVariableTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EditorFeatures/CSharpTest/Interactive/CodeActions/InteractiveIntroduceVariableTests.cs b/src/EditorFeatures/CSharpTest/Interactive/CodeActions/InteractiveIntroduceVariableTests.cs index e4559bca7ac..f639ba64cfe 100644 --- a/src/EditorFeatures/CSharpTest/Interactive/CodeActions/InteractiveIntroduceVariableTests.cs +++ b/src/EditorFeatures/CSharpTest/Interactive/CodeActions/InteractiveIntroduceVariableTests.cs @@ -123,7 +123,7 @@ public static void Main() { for (int i = 0; i < 10; i++) { - var {|Rename:v|} = i + 1; + int {|Rename:v|} = i + 1; Console.WriteLine(v); } } -- GitLab