summaryrefslogtreecommitdiff
path: root/jstests/auth/mongoURIAuth.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/auth/mongoURIAuth.js')
-rw-r--r--jstests/auth/mongoURIAuth.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/auth/mongoURIAuth.js b/jstests/auth/mongoURIAuth.js
index fa6a0ad40db..27936a9a6c1 100644
--- a/jstests/auth/mongoURIAuth.js
+++ b/jstests/auth/mongoURIAuth.js
@@ -59,8 +59,8 @@ const runURIAuthTest = function(userMech, uriMech, authMechanism, regexMechanism
const SCRAM_SHA_256 = "SCRAM-SHA-256";
const SCRAM_SHA_1 = "SCRAM-SHA-1";
-const SCRAM_SHA_256_regex = /saslStart.*mechanism:.*SCRAM-SHA-256/g;
-const SCRAM_SHA_1_regex = /saslStart.*mechanism:.*SCRAM-SHA-1/g;
+const SCRAM_SHA_256_regex = /saslStart.*mechanism.*SCRAM-SHA-256/g;
+const SCRAM_SHA_1_regex = /saslStart.*mechanism.*SCRAM-SHA-1/g;
jsTestLog("Test that a mechanism specified in the URI is the chosen authentication method.");
runURIAuthTest(false, true, SCRAM_SHA_256, SCRAM_SHA_256_regex);