diff options
author | Ian Boros <ian.boros@mongodb.com> | 2020-02-14 14:47:02 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-02-14 20:33:46 +0000 |
commit | 05c914dd2331e9f8f5f87b082d1c92156700e0b6 (patch) | |
tree | 8fae9a6b99ccdd56490f3e1907194b6b7a5996f2 /jstests/auth/speculative-auth-replset.js | |
parent | 0b0586c0c8a51830e13dd87698571258aa14bc83 (diff) | |
download | mongo-05c914dd2331e9f8f5f87b082d1c92156700e0b6.tar.gz |
SERVER-45048 Fix one more straggling jstest which tried to execute mongo shell from root
Diffstat (limited to 'jstests/auth/speculative-auth-replset.js')
-rw-r--r-- | jstests/auth/speculative-auth-replset.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/auth/speculative-auth-replset.js b/jstests/auth/speculative-auth-replset.js index 65d83acba44..dfa985321a3 100644 --- a/jstests/auth/speculative-auth-replset.js +++ b/jstests/auth/speculative-auth-replset.js @@ -28,7 +28,7 @@ const baseURI = (function() { })(); function test(uri) { - assert.eq(runMongoProgram('./mongo', uri, '--eval', ';'), 0); + assert.eq(runMongoProgram('mongo', uri, '--eval', ';'), 0); } // We've made no client connections for which speculation was possible, |