Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorNathan Ricci <naricc@microsoft.com>2021-03-12 21:36:38 +0300
committerGitHub <noreply@github.com>2021-03-12 21:36:38 +0300
commit9acf9ee87811f30c2f0294b8bd48e8c7a0ce1771 (patch)
tree44ccce6e0e85c169711f9e55de62950b2ca6799f /mcs
parent8a9d5f8fadf21546e4207d7fb943786ceec675d4 (diff)
[CREDSCAN] Switched password to placeholder. (#20911)
* Switched password to placeholder. * Update MSSqlTestBed.cs
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.Data/Test/MSSqlTestBed.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Data/Test/MSSqlTestBed.cs b/mcs/class/System.Data/Test/MSSqlTestBed.cs
index bb2ed3bd160..f0c115dd6e7 100644
--- a/mcs/class/System.Data/Test/MSSqlTestBed.cs
+++ b/mcs/class/System.Data/Test/MSSqlTestBed.cs
@@ -59,7 +59,7 @@ namespace MonoTests.System.Data
"Server=164.99.168.131;" +
"Database=Northwind;" +
"User ID=sa;" +
- "Password=novell";
+ "Password=[PLACEHOLDER]";
conn = new SqlConnection(connectionString);
}