summaryrefslogtreecommitdiff
path: root/jstests/core/profile5.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/profile5.js')
-rw-r--r--jstests/core/profile5.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/jstests/core/profile5.js b/jstests/core/profile5.js
index 11b4bbe7d59..d507b864906 100644
--- a/jstests/core/profile5.js
+++ b/jstests/core/profile5.js
@@ -20,7 +20,8 @@ t.update({x: {$gt: 3}}, {$set: {y: true}}, {multi: true});
printjson(t.find().toArray());
-assert.eq(1, db.system.profile.count({op: "update"}),
+assert.eq(1,
+ db.system.profile.count({op: "update"}),
"expected exactly one update op in system.profile");
var prof = db.system.profile.findOne({op: "update"});
printjson(prof);