diff options
author | Spencer T Brody <spencer@mongodb.com> | 2015-03-22 12:08:21 -0400 |
---|---|---|
committer | Spencer T Brody <spencer@mongodb.com> | 2015-04-06 18:19:21 -0400 |
commit | 6ccb82c987a47995fd7d8019d7fd4d1e557478b4 (patch) | |
tree | 2542816a69e9faaaff840754b42f0229dc905ccd /jstests/auth/system_user_exception.js | |
parent | 7baac52f05a3e0cbdb7168e51836f507eda99dff (diff) | |
download | mongo-6ccb82c987a47995fd7d8019d7fd4d1e557478b4.tar.gz |
SERVER-17450 Standardize on a single way to start mongod in tests
Diffstat (limited to 'jstests/auth/system_user_exception.js')
-rw-r--r-- | jstests/auth/system_user_exception.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/auth/system_user_exception.js b/jstests/auth/system_user_exception.js index 6d0ec4c0cf7..f9c79828b86 100644 --- a/jstests/auth/system_user_exception.js +++ b/jstests/auth/system_user_exception.js @@ -18,4 +18,4 @@ assert.eq(1, m.getDB("local").auth({user: "__system", pwd: "foopdedoop", mechani m.getDB("test").createUser({user: "guest" , pwd: "guest", roles: jsTest.readOnlyUserRoles}); assert.eq(0, m.getDB("test").auth("guest", "guest")); -stopMongod(port); +MongoRunner.stopMongod(port); |