diff options
author | Jonathan Abrahams <jonathan@mongodb.com> | 2016-03-09 12:17:50 -0500 |
---|---|---|
committer | Jonathan Abrahams <jonathan@mongodb.com> | 2016-03-09 12:18:14 -0500 |
commit | 4ae691e8edc87d0e3cfb633bb91c328426be007b (patch) | |
tree | 52079a593f54382ca13a2e741633eab1b6271893 /jstests/disk/preallocate2.js | |
parent | a025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff) | |
download | mongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz |
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/disk/preallocate2.js')
-rw-r--r-- | jstests/disk/preallocate2.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/jstests/disk/preallocate2.js b/jstests/disk/preallocate2.js index cf191f4265a..f4d9eb2f253 100644 --- a/jstests/disk/preallocate2.js +++ b/jstests/disk/preallocate2.js @@ -4,11 +4,13 @@ var baseName = "jstests_preallocate2"; var m = MongoRunner.runMongod({}); -m.getDB( baseName )[ baseName ].save( {i:1} ); +m.getDB(baseName)[baseName].save({i: 1}); // Windows does not currently use preallocation -expectedMB = ( _isWindows() ? 70 : 100 ); -if ( m.getDB( baseName ).serverBits() < 64 ) +expectedMB = (_isWindows() ? 70 : 100); +if (m.getDB(baseName).serverBits() < 64) expectedMB /= 4; -assert.soon( function() { return m.getDBs().totalSize > expectedMB * 1000000; }, "\n\n\nFAIL preallocate.js expected second file to bring total size over " + expectedMB + "MB" ); +assert.soon(function() { + return m.getDBs().totalSize > expectedMB * 1000000; +}, "\n\n\nFAIL preallocate.js expected second file to bring total size over " + expectedMB + "MB"); |