summaryrefslogtreecommitdiff
path: root/jstests/core/index_stats.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index_stats.js')
-rw-r--r--jstests/core/index_stats.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/index_stats.js b/jstests/core/index_stats.js
index 7db4559210c..16d5a16d8d2 100644
--- a/jstests/core/index_stats.js
+++ b/jstests/core/index_stats.js
@@ -78,8 +78,8 @@
//
// Confirm index stats tick on findAndModify() update.
//
- var res = db.runCommand(
- {findAndModify: colName, query: {a: 1}, update: {$set: {d: 1}}, 'new': true});
+ var res =
+ db.runCommand({findAndModify: colName, query: {a: 1}, update: {$set: {d: 1}}, 'new': true});
assert.commandWorked(res);
countA++;
assert.eq(countA, getUsageCount("a_1"));