diff options
author | Charlie Swanson <charlie.swanson@mongodb.com> | 2017-01-24 14:27:29 -0500 |
---|---|---|
committer | Charlie Swanson <charlie.swanson@mongodb.com> | 2017-01-24 15:21:59 -0500 |
commit | f6785f6fe57da074f1ff9458d19710ec3ae9b596 (patch) | |
tree | c91dad0cb16a97b4a4975b20718973968a866b87 /jstests | |
parent | d0b894f791aa3a9e95d6d4cba8fdbdc5b14a4e81 (diff) | |
download | mongo-f6785f6fe57da074f1ff9458d19710ec3ae9b596.tar.gz |
SERVER-26317 Increase benchRun seconds for flaky tests
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/core/bench_test1.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/jstests/core/bench_test1.js b/jstests/core/bench_test1.js index da87c1f7a79..d29a0d577e7 100644 --- a/jstests/core/bench_test1.js +++ b/jstests/core/bench_test1.js @@ -31,7 +31,6 @@ assert.lte(seconds * res.update, t.findOne({_id: 1}).x * 1.5, "A1"); assert.eq(1, t.getIndexes().length, "B1"); benchArgs['ops'] = [{op: "createIndex", ns: t.getFullName(), key: {x: 1}}]; benchArgs['parallel'] = 1; -benchArgs['seconds'] = 1; benchRun(benchArgs); assert.eq(2, t.getIndexes().length, "B2"); benchArgs['ops'] = [{op: "dropIndex", ns: t.getFullName(), key: {x: 1}}]; |