summaryrefslogtreecommitdiff
path: root/jstests/libs/transactions_util.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/libs/transactions_util.js')
-rw-r--r--jstests/libs/transactions_util.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/libs/transactions_util.js b/jstests/libs/transactions_util.js
index af9cccb44c0..3ddb09d5c28 100644
--- a/jstests/libs/transactions_util.js
+++ b/jstests/libs/transactions_util.js
@@ -76,7 +76,7 @@ var TransactionsUtil = (function() {
function deepCopyObject(dst, src) {
for (var k in src) {
var v = src[k];
- if (typeof(v) == "object" && v !== null) {
+ if (typeof (v) == "object" && v !== null) {
if (v.constructor === ObjectId) { // convert ObjectId properly
eval("v = " + tojson(v));
} else if (v instanceof NumberLong) { // convert NumberLong properly