Skip to content

Commit fd616f6

Browse files
authored
Remove some more Azure Account references (#4290)
1 parent ea21b37 commit fd616f6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@
325325
"vscode-docker.walkthrough.dockerStart.runContainer.title": "Run a Container",
326326
"vscode-docker.walkthrough.dockerStart.runContainer.description": "You can run any image on your system including those you've built with a Dockerfile.\n[Run Image](command:vscode-docker.images.run)",
327327
"vscode-docker.walkthrough.dockerStart.dockerExplorer.title": "Use the Docker Explorer",
328-
"vscode-docker.walkthrough.dockerStart.dockerExplorer.description": "The Docker Explorer makes it easy to manage, troubleshoot, and deploy containerized applications. The Docker Explorer shows a number of Docker resources such as containers, images, volumes, networks, and container registries. Also, if the [Azure Account extension](command:extension.open?%22ms-vscode.azure-account%22) is installed, you'll be able to browse your Azure Container Registries.\n\nThe right-click menu provides access to commonly used commands for each resource type.\n[Open Docker Explorer](command:workbench.view.extension.dockerView)",
328+
"vscode-docker.walkthrough.dockerStart.dockerExplorer.description": "The Docker Explorer makes it easy to manage, troubleshoot, and deploy containerized applications. The Docker Explorer shows a number of Docker resources such as containers, images, volumes, networks, and container registries.\n\nThe right-click menu provides access to commonly used commands for each resource type.\n[Open Docker Explorer](command:workbench.view.extension.dockerView)",
329329
"vscode-docker.walkthrough.dockerStart.pushImage.title": "Push an Image to a Container Registry",
330330
"vscode-docker.walkthrough.dockerStart.pushImage.description": "The Docker Extension allows you to push your Docker image to Docker Hub, Azure Container Registries and other registry providers.\n[Push an Image](command:vscode-docker.images.push)",
331331
"vscode-docker.walkthrough.dockerStart.azDeploy.title": "Deploy to Azure App Service",

src/test/runTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
// Adapted from https://code.visualstudio.com/api/working-with-extensions/testing-extension
77

8-
import * as path from 'path';
98
import { runTests } from '@vscode/test-electron';
109
import { TestOptions } from '@vscode/test-electron/out/runTest';
10+
import * as path from 'path';
1111

1212
async function main(): Promise<void> {
1313
// The folder containing the Extension Manifest package.json
@@ -24,7 +24,7 @@ async function main(): Promise<void> {
2424
const options: TestOptions = {
2525
extensionDevelopmentPath,
2626
extensionTestsPath,
27-
launchArgs: [testWorkspacePath, '--install-extension', 'ms-vscode.azure-account'],
27+
launchArgs: [testWorkspacePath],
2828
extensionTestsEnv: {
2929
DEBUGTELEMETRY: '1',
3030
// eslint-disable-next-line @typescript-eslint/naming-convention

0 commit comments

Comments
 (0)