summaryrefslogtreecommitdiff
path: root/jstests/auth/speculative-sasl-start.js
diff options
context:
space:
mode:
authorMathew Robinson <chasinglogic@gmail.com>2020-02-14 13:11:19 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-14 18:25:38 +0000
commit453095e2e5028de3991d0d28692e298957213214 (patch)
treecf94b0c7bfb188f2bfb19bf2912317bc2f9792a5 /jstests/auth/speculative-sasl-start.js
parentff3c95e2c5fccdce7f2dc34af62b9598dc463bfb (diff)
downloadmongo-453095e2e5028de3991d0d28692e298957213214.tar.gz
SERVER-45048 Fix straggling jstests which tried to execute mongo shell from root
Diffstat (limited to 'jstests/auth/speculative-sasl-start.js')
-rw-r--r--jstests/auth/speculative-sasl-start.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/auth/speculative-sasl-start.js b/jstests/auth/speculative-sasl-start.js
index a29d19815e7..c69d6f11aed 100644
--- a/jstests/auth/speculative-sasl-start.js
+++ b/jstests/auth/speculative-sasl-start.js
@@ -11,7 +11,7 @@ admin.createUser(
admin.auth('admin', 'pwd');
function test(uri, succeed) {
- const shell = runMongoProgram('./mongo', uri, '--eval', ';');
+ const shell = runMongoProgram('mongo', uri, '--eval', ';');
if (succeed) {
assert.eq(0, shell);