Skip to content

Commit

Permalink
Change fake password to avoid triggering credscan.
Browse files Browse the repository at this point in the history
  • Loading branch information
languy committed Feb 9, 2024
1 parent 5718c6b commit 7b3bb6e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/suite/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,17 +307,17 @@ suite("CosmosDb NoSql connection String Test Suite", () => {
authenticationType: string;
}[] = [
{
cs: "AccountEndpoint=https://cdbaccount.documents.azure.com:443/;AccountKey=password123==;",
cs: "AccountEndpoint=https://cdbaccount.documents.azure.com:443/;AccountKey=[PLACEHOLDER]==;",
server: "cdbaccount.documents.azure.com",
user: "https://cdbaccount.documents.azure.com:443/",
password: "password123==",
password: "[PLACEHOLDER]==",
authenticationType: "SqlLogin",
},
{
cs: "AccountKey=password123==;AccountEndpoint=https://cdbaccount.documents.azure.com:443/;",
cs: "AccountKey=[PLACEHOLDER]==;AccountEndpoint=https://cdbaccount.documents.azure.com:443/;",
server: "cdbaccount.documents.azure.com",
user: "https://cdbaccount.documents.azure.com:443/",
password: "password123==",
password: "[PLACEHOLDER]==",
authenticationType: "SqlLogin",
},
];
Expand Down

0 comments on commit 7b3bb6e

Please sign in to comment.