summaryrefslogtreecommitdiff
path: root/jstests/core/bulk_insert_capped.js
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-03-17 14:41:31 -0400
committerMike Grundy <michael.grundy@10gen.com>2016-03-18 17:10:31 -0400
commit1be713cebbb9411d2977ec9996931a4508252af0 (patch)
treea199db2a273ebb5ca4289158ee5f63066cb3926a /jstests/core/bulk_insert_capped.js
parentd82956a6fe2e7d5dd6216e66e95900d73dbf2e0c (diff)
downloadmongo-1be713cebbb9411d2977ec9996931a4508252af0.tar.gz
SERVER-23067 Final round of JS linting and formatting
Diffstat (limited to 'jstests/core/bulk_insert_capped.js')
-rw-r--r--jstests/core/bulk_insert_capped.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/bulk_insert_capped.js b/jstests/core/bulk_insert_capped.js
index 129c393dbfb..b7d21cee3f5 100644
--- a/jstests/core/bulk_insert_capped.js
+++ b/jstests/core/bulk_insert_capped.js
@@ -15,9 +15,9 @@
assert(res.valid, tojson(res));
// Ensure that various ways of iterating the collection only return one document.
- assert.eq(t.find().itcount(), 1); // Table scan.
+ assert.eq(t.find().itcount(), 1); // Table scan.
assert.eq(t.find({}, {_id: 1}).hint({_id: 1}).itcount(), 1); // Index only (covered).
- assert.eq(t.find().hint({_id: 1}).itcount(), 1); // Index scan with fetch.
+ assert.eq(t.find().hint({_id: 1}).itcount(), 1); // Index scan with fetch.
// Ensure that the second document is the one that is kept.
assert.eq(t.findOne(), {_id: 2});