From 6cf3c3dbd4188d3de7182a7f0d1cfe47d3c06221 Mon Sep 17 00:00:00 2001 From: Ethan Reesor Date: Thu, 24 Jun 2021 23:17:46 -0500 Subject: [PATCH] src/goTestExplorer: cleanup imports --- src/goTestExplorer.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/goTestExplorer.ts b/src/goTestExplorer.ts index 3c8393a4c8..dcad570f56 100644 --- a/src/goTestExplorer.ts +++ b/src/goTestExplorer.ts @@ -11,8 +11,6 @@ import { FileType, WorkspaceFolder, TestRunRequest, - CancellationToken, - window, OutputChannel, TestResultState, TestRun @@ -21,11 +19,8 @@ import path = require('path'); import { getModFolderPath, isModSupported } from './goModules'; import { getCurrentGoPath } from './util'; import { GoDocumentSymbolProvider } from './goOutline'; -import { testAtCursor } from './goTest'; import { getGoConfig } from './config'; -import { gocodeClose } from './goTools'; -import { getTestFlags, getTestFunctionDebugArgs, getTestTags, goTest, TestConfig } from './testUtils'; -import { resolve } from 'path'; +import { getTestFlags, goTest } from './testUtils'; // We could use TestItem.data, but that may be removed const symbols = new WeakMap();