From afd8109b3cf1900616a6e58e622ec2df843647d7 Mon Sep 17 00:00:00 2001 From: CyrusNajmabadi Date: Fri, 2 Jun 2017 17:11:08 -0700 Subject: [PATCH] Remove metadata portion of test as index may not be built yet. --- .../IntegrationTests/CSharp/CSharpCodeActions.cs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/VisualStudio/IntegrationTest/IntegrationTests/CSharp/CSharpCodeActions.cs b/src/VisualStudio/IntegrationTest/IntegrationTests/CSharp/CSharpCodeActions.cs index ef4a5c340fc..ff5674551c9 100644 --- a/src/VisualStudio/IntegrationTest/IntegrationTests/CSharp/CSharpCodeActions.cs +++ b/src/VisualStudio/IntegrationTest/IntegrationTests/CSharp/CSharpCodeActions.cs @@ -185,6 +185,11 @@ public class P2 { }"); public void GFUFuzzyMatchAfterRenameTracking() { SetUpEditor(@" +namespace N +{ + class Goober { } +} + namespace NS { public class P2 @@ -196,7 +201,7 @@ static void Main(string[] args) } }"); VisualStudio.Editor.SendKeys(VirtualKey.Backspace, VirtualKey.Backspace, - "Steam"); + "Foober"); VisualStudio.Editor.InvokeCodeActionList(); var expectedItems = new[] @@ -207,8 +212,7 @@ static void Main(string[] args) "Generate class 'Steam'", "Generate nested class 'Steam'", "Generate new type...", - "Stream - using System.IO;", - "IStream - using System.Runtime.InteropServices.ComTypes;", + "Goober - using N;", "Suppress CS0168", "in Source", }; -- GitLab