diff --git a/package-lock.json b/package-lock.json index 31b01c2bcf..50d3c145a4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -87,8 +87,7 @@ "umd-compat-loader": "2.1.2", "unzipper": "0.10.11", "vscode-oniguruma": "^1.6.1", - "vscode-textmate": "^6.0.0", - "vscode-uri": "^3.0.7" + "vscode-textmate": "^6.0.0" }, "engines": { "vscode": "^1.93.0" diff --git a/package.json b/package.json index 4e10e740f4..a90629fe70 100644 --- a/package.json +++ b/package.json @@ -170,8 +170,7 @@ "umd-compat-loader": "2.1.2", "unzipper": "0.10.11", "vscode-oniguruma": "^1.6.1", - "vscode-textmate": "^6.0.0", - "vscode-uri": "^3.0.7" + "vscode-textmate": "^6.0.0" }, "runtimeDependencies": [ { diff --git a/test/omnisharp/omnisharpUnitTests/options.test.ts b/test/omnisharp/omnisharpUnitTests/options.test.ts index b9aa409e15..e69d912fc4 100644 --- a/test/omnisharp/omnisharpUnitTests/options.test.ts +++ b/test/omnisharp/omnisharpUnitTests/options.test.ts @@ -5,7 +5,6 @@ import * as vscode from 'vscode'; import { jest, describe, test, expect, beforeEach } from '@jest/globals'; -import { URI } from 'vscode-uri'; import * as path from 'path'; import { commonOptions, omnisharpOptions } from '../../../src/shared/options'; import { getWorkspaceConfiguration } from '../../fakes'; @@ -85,7 +84,7 @@ describe('Options tests', () => { }); test('"omnisharp.defaultLaunchSolution" is used if set', async () => { - const workspaceFolderUri = URI.file('/Test'); + const workspaceFolderUri = vscode.Uri.file('/Test'); jest.replaceProperty(vscode.workspace, 'workspaceFolders', [ { index: 0, name: 'Test', uri: workspaceFolderUri }, ]);