Bugbash updates (#1684)

* Minor changes to vcore mongo quickstart based on feedback

* Text change vcore to vCore
This commit is contained in:
vchske 2023-11-08 16:04:06 -08:00 committed by GitHub
parent 15d111e3db
commit a5e1b37ba6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -345,7 +345,7 @@ describe("CommandBarComponentButtonFactory tests", () => {
describe("Open Postgres and vCore Mongo buttons", () => { describe("Open Postgres and vCore Mongo buttons", () => {
const openPostgresShellButtonLabel = "Open PSQL shell"; const openPostgresShellButtonLabel = "Open PSQL shell";
const openVCoreMongoShellButtonLabel = "Open MongoDB (vcore) shell"; const openVCoreMongoShellButtonLabel = "Open MongoDB (vCore) shell";
beforeAll(() => { beforeAll(() => {
mockExplorer = {} as Explorer; mockExplorer = {} as Explorer;

View File

@ -523,7 +523,7 @@ function createOpenTerminalButtonByKind(
case ViewModels.TerminalKind.Postgres: case ViewModels.TerminalKind.Postgres:
return "PSQL"; return "PSQL";
case ViewModels.TerminalKind.VCoreMongo: case ViewModels.TerminalKind.VCoreMongo:
return "MongoDB (vcore)"; return "MongoDB (vCore)";
default: default:
return ""; return "";
} }