diff options
author | Geert Bosch <geert@mongodb.com> | 2018-06-20 16:56:05 -0400 |
---|---|---|
committer | Geert Bosch <geert@mongodb.com> | 2018-07-05 08:20:56 -0400 |
commit | 711c076ef57c0ce3517ab9385c2fd3a005c941b3 (patch) | |
tree | 840d01aa7eb8f341a098e9d0387e17a942a71f3a /jstests/slow1 | |
parent | a76888797c5713382aa7139157880aad2db378d5 (diff) | |
download | mongo-711c076ef57c0ce3517ab9385c2fd3a005c941b3.tar.gz |
SERVER-35715 Remove nopreallocj and smallfiles options from tests
Diffstat (limited to 'jstests/slow1')
-rw-r--r-- | jstests/slow1/conc_update.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/slow1/conc_update.js b/jstests/slow1/conc_update.js index e46e132bd61..57e4ba134cb 100644 --- a/jstests/slow1/conc_update.js +++ b/jstests/slow1/conc_update.js @@ -1,7 +1,7 @@ (function() { "use strict"; - const conn = MongoRunner.runMongod({smallfiles: "", nojournal: ""}); + const conn = MongoRunner.runMongod({nojournal: ""}); assert.neq(null, conn, "mongod was unable to start up"); db = conn.getDB("concurrency"); db.dropDatabase(); |