summaryrefslogtreecommitdiff
path: root/jstests/core/nestedobj1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/nestedobj1.js')
-rw-r--r--jstests/core/nestedobj1.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/jstests/core/nestedobj1.js b/jstests/core/nestedobj1.js
index 97b9460da6f..379224c1775 100644
--- a/jstests/core/nestedobj1.js
+++ b/jstests/core/nestedobj1.js
@@ -1,14 +1,10 @@
// SERVER-5127, SERVER-5036
function makeNestObj(depth) {
- toret = {
- a: 1
- };
+ toret = {a: 1};
for (i = 1; i < depth; i++) {
- toret = {
- a: toret
- };
+ toret = {a: toret};
}
return toret;