From be6446ddb1090641d4bcff83bfb484c49c98c8e7 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Wed, 31 May 2023 08:23:50 -0700 Subject: [PATCH] fix: remove extraneous incorrect context keys (#183959) These were actually getting added in getTestItemContextOverlay, and the test ID was using the extended ID which extensions do not know about. Fixes #183612 --- .../contrib/testing/browser/testingExplorerView.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts b/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts index cceb1ecfe3e..69970f4f193 100644 --- a/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts +++ b/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts @@ -1394,12 +1394,6 @@ const getActionableElementActions = ( ], [ TestingContextKeys.supportsContinuousRun.key, supportsCr, - ], [ - TestingContextKeys.controllerId.key, - test.controllerId, - ], [ - TestingContextKeys.testItemExtId.key, - test.item.extId, ]); }