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
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", () => {
const openPostgresShellButtonLabel = "Open PSQL shell";
const openVCoreMongoShellButtonLabel = "Open MongoDB (vcore) shell";
const openVCoreMongoShellButtonLabel = "Open MongoDB (vCore) shell";
beforeAll(() => {
mockExplorer = {} as Explorer;

View File

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