summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2015-05-26 18:03:03 -0400
committerDan Pasette <dan@mongodb.com>2015-08-08 23:55:52 -0400
commit13de7c501812e3f144097cd1d62f2b955a46f523 (patch)
tree6d3b8f391a8dd506d5f487cede943872d4a3c3a5
parent9c16e7062e68383103c8c9c09d14647f93352b19 (diff)
downloadmongo-13de7c501812e3f144097cd1d62f2b955a46f523.tar.gz
Fix typo
(cherry picked from commit 06b703935fae0354552a3596dd84e8b01f38d41d)
-rw-r--r--jstests/core/apitest_dbcollection.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/apitest_dbcollection.js b/jstests/core/apitest_dbcollection.js
index e63dde2a7d5..6d405e8c716 100644
--- a/jstests/core/apitest_dbcollection.js
+++ b/jstests/core/apitest_dbcollection.js
@@ -249,7 +249,7 @@ assert(db.getCollection( "test_db" ).getIndexes().length == 0,24);
assert.neq(undefined, t.totalIndexSize(),
'db.collection.totalIndexSize() cannot be undefined on a non-empty collection');
- if (db.serverStatus()storageEngine.name === 'mmapv1') {
+ if (db.serverStatus().storageEngine.name === 'mmapv1') {
// Only in MMAPv1 do we guarantee that storageSize only changes when you write to a
// collection.
assert.eq(stats.storageSize, t.storageSize());