summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/inmem_config_str.js
diff options
context:
space:
mode:
authorMax Hirschhorn <max.hirschhorn@mongodb.com>2018-02-28 12:25:13 -0500
committerMax Hirschhorn <max.hirschhorn@mongodb.com>2018-02-28 12:25:13 -0500
commit0fafa4fe2728267fc4a52e250e9f596bef555de5 (patch)
tree7bacd4bc2cf5b668ef508868a5d30e9eb4707ce4 /jstests/noPassthrough/inmem_config_str.js
parent23a23c07c556508e87950cf796183cede9befe83 (diff)
downloadmongo-0fafa4fe2728267fc4a52e250e9f596bef555de5.tar.gz
SERVER-33533 Add MongoRunner.stopMongod() to inmem_config_str.js test.
This is required when the test would otherwise pass after the changes from 8821cdb5508f8a26c025b3e0124903e9ae64c479.
Diffstat (limited to 'jstests/noPassthrough/inmem_config_str.js')
-rw-r--r--jstests/noPassthrough/inmem_config_str.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/jstests/noPassthrough/inmem_config_str.js b/jstests/noPassthrough/inmem_config_str.js
index 4d0ef39be59..8e330f57b75 100644
--- a/jstests/noPassthrough/inmem_config_str.js
+++ b/jstests/noPassthrough/inmem_config_str.js
@@ -12,4 +12,6 @@
inMemoryEngineConfigString: 'eviction=(threads_min=1)',
});
assert.neq(null, mongod, "mongod failed to started up with --inMemoryEngineConfigString");
+
+ MongoRunner.stopMongod(mongod);
}());