summaryrefslogtreecommitdiff
path: root/jstests/core/set_type_change.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/set_type_change.js')
-rw-r--r--jstests/core/set_type_change.js26
1 files changed, 13 insertions, 13 deletions
diff --git a/jstests/core/set_type_change.js b/jstests/core/set_type_change.js
index 565da8be12e..5b06449dce4 100644
--- a/jstests/core/set_type_change.js
+++ b/jstests/core/set_type_change.js
@@ -8,21 +8,21 @@
* the document, including any relevant indices.
*/
(function() {
- "use strict";
+"use strict";
- var coll = db.set_type_change;
- coll.drop();
- assert.commandWorked(coll.ensureIndex({a: 1}));
+var coll = db.set_type_change;
+coll.drop();
+assert.commandWorked(coll.ensureIndex({a: 1}));
- assert.writeOK(coll.insert({a: 2}));
+assert.writeOK(coll.insert({a: 2}));
- var newVal = new NumberLong(2);
- var res = coll.update({}, {$set: {a: newVal}});
- assert.eq(res.nMatched, 1);
- if (coll.getMongo().writeMode() == "commands")
- assert.eq(res.nModified, 1);
+var newVal = new NumberLong(2);
+var res = coll.update({}, {$set: {a: newVal}});
+assert.eq(res.nMatched, 1);
+if (coll.getMongo().writeMode() == "commands")
+ assert.eq(res.nModified, 1);
- // Make sure it actually changed the type.
- var updated = coll.findOne();
- assert(updated.a instanceof NumberLong, "$set did not update type of value: " + updated.a);
+// Make sure it actually changed the type.
+var updated = coll.findOne();
+assert(updated.a instanceof NumberLong, "$set did not update type of value: " + updated.a);
})();