diff --git a/packages/databricks-vscode/src/test/e2e/run_files.e2e.ts b/packages/databricks-vscode/src/test/e2e/run_files.e2e.ts index c256ee9cb..c4be181d0 100644 --- a/packages/databricks-vscode/src/test/e2e/run_files.e2e.ts +++ b/packages/databricks-vscode/src/test/e2e/run_files.e2e.ts @@ -72,9 +72,9 @@ describe("Run files", async function () { const notifications = await workbench.getNotifications(); for (const notification of notifications) { const message = await notification.getMessage(); - if (message.includes("Deploying")) { + if (message.includes("Uploading bundle assets")) { // Make sure the CLI is actually spawned before cancelling - await sleep(1000); + await sleep(500); await notification.takeAction("Cancel"); return true; } diff --git a/packages/databricks-vscode/src/ui/bundle-resource-explorer/BundleCommands.ts b/packages/databricks-vscode/src/ui/bundle-resource-explorer/BundleCommands.ts index ef9226a98..faca2d6c8 100644 --- a/packages/databricks-vscode/src/ui/bundle-resource-explorer/BundleCommands.ts +++ b/packages/databricks-vscode/src/ui/bundle-resource-explorer/BundleCommands.ts @@ -92,7 +92,7 @@ export class BundleCommands implements Disposable { await window.withProgress( { location: ProgressLocation.Notification, - title: "Synchronising bundle assets", + title: "Uploading bundle assets", cancellable: true, }, async (progress, token) => {