From 1993f2bb5db4855b2b38c3c5f4ce15a42df5c4fe Mon Sep 17 00:00:00 2001 From: Laurent Nguyen Date: Fri, 9 Feb 2024 14:40:07 +0000 Subject: [PATCH] Change fake password to avoid triggering credscan. (#110) --- src/test/suite/extension.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/suite/extension.test.ts b/src/test/suite/extension.test.ts index 5030bb4..a39da18 100644 --- a/src/test/suite/extension.test.ts +++ b/src/test/suite/extension.test.ts @@ -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", }, ];