From da6c1006a5e15179738452547f0f9acb5676e877 Mon Sep 17 00:00:00 2001 From: Joey Robichaud Date: Thu, 18 Feb 2021 11:07:15 -0800 Subject: [PATCH] Revert ToggleCompletionMode command name to its canonical name --- azure-pipelines-integration.yml | 5 ++++- .../IntegrationTest/TestUtilities/WellKnownCommandNames.cs | 4 +--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/azure-pipelines-integration.yml b/azure-pipelines-integration.yml index 54cf4819baf2..6cfb4daece86 100644 --- a/azure-pipelines-integration.yml +++ b/azure-pipelines-integration.yml @@ -18,7 +18,10 @@ jobs: - job: VS_Integration pool: name: NetCorePublic-Pool - queue: $(queueName) + queue: BuildPool.Windows.VS2019.Pre.Scouting.Open +# One this integration test fix has flowed in to master-vs-deps, we can update the queueName variable, and revert this change. +# Tracked by https://github.com/dotnet/roslyn/issues/51312 +# queue: $(queueName) strategy: maxParallel: 4 matrix: diff --git a/src/VisualStudio/IntegrationTest/TestUtilities/WellKnownCommandNames.cs b/src/VisualStudio/IntegrationTest/TestUtilities/WellKnownCommandNames.cs index f018f6fc764f..cbe0ead05e6b 100644 --- a/src/VisualStudio/IntegrationTest/TestUtilities/WellKnownCommandNames.cs +++ b/src/VisualStudio/IntegrationTest/TestUtilities/WellKnownCommandNames.cs @@ -17,9 +17,7 @@ public static class WellKnownCommandNames public const string Edit_ListMembers = "Edit.ListMembers"; public const string Edit_ParameterInfo = "Edit.ParameterInfo"; public const string Edit_QuickInfo = "Edit.QuickInfo"; - // This will need to be reverted when we move to 16.8p3. DevDiv bug: - // https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1193302 - public const string Edit_ToggleCompletionMode = "Edit.ToggleIntelliSensesuggestioncompletionmode"; + public const string Edit_ToggleCompletionMode = "Edit.ToggleCompletionMode"; public const string Edit_Undo = "Edit.Undo"; public const string Edit_Redo = "Edit.Redo"; public const string Edit_SelectionCancel = "Edit.SelectionCancel";