Skip to content

Commit 5d082d1

Browse files
committed
small fix
1 parent db134dd commit 5d082d1

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/test/unittest/noConfigDebugInit.unit.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ suite('setup for no-config debug scenario', function () {
2121
let bundledDebugPath: string;
2222
let DEBUGPY_ADAPTER_ENDPOINTS = 'DEBUGPY_ADAPTER_ENDPOINTS';
2323
let BUNDLED_DEBUGPY_PATH = 'BUNDLED_DEBUGPY_PATH';
24-
let tempDirPath: string;
2524
let workspaceUriStub: sinon.SinonStub;
2625

2726
const testDataDir = path.join(__dirname, 'testData');
@@ -30,9 +29,6 @@ suite('setup for no-config debug scenario', function () {
3029
try {
3130
context = TypeMoq.Mock.ofType<IExtensionContext>();
3231

33-
const randomSuffix = '1234567899';
34-
const tempDirName = `noConfigDebugAdapterEndpoints-${randomSuffix}`;
35-
tempDirPath = path.join(os.tmpdir(), tempDirName);
3632
context.setup((c) => (c as any).extensionPath).returns(() => os.tmpdir());
3733
context.setup((c) => c.subscriptions).returns(() => []);
3834
noConfigScriptsDir = path.join(context.object.extensionPath, 'bundled/scripts/noConfigScripts');

0 commit comments

Comments
 (0)