diff options
author | dwight <dwight@dwights-MacBook-Pro.local> | 2011-01-20 17:34:37 -0700 |
---|---|---|
committer | dwight <dwight@dwights-MacBook-Pro.local> | 2011-01-20 17:34:37 -0700 |
commit | 0369b127ba35196333f2c0be37aacb9e8490c9ef (patch) | |
tree | ae00a9d2febd8850d4e22bce8050694b7a8c32ad /jstests | |
parent | d782a78fc75721a4548e28ca3b2adba36470747e (diff) | |
download | mongo-0369b127ba35196333f2c0be37aacb9e8490c9ef.tar.gz |
hopefully fix test
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/disk/preallocate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/disk/preallocate.js b/jstests/disk/preallocate.js index ed9da4ac9a5..4f358664a5a 100644 --- a/jstests/disk/preallocate.js +++ b/jstests/disk/preallocate.js @@ -14,7 +14,7 @@ expectedMB = 100; if ( m.getDB( baseName ).serverBits() < 64 ) expectedMB /= 4; -assert.soon( function() { return m.getDBs().totalSize > expectedMB * 1000000; }, "expected second file to bring total size over " + expected + "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" ); stopMongod( port ); |