summaryrefslogtreecommitdiff
path: root/jstests/mmap_v1/use_power_of_2.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/mmap_v1/use_power_of_2.js')
-rw-r--r--jstests/mmap_v1/use_power_of_2.js10
1 files changed, 2 insertions, 8 deletions
diff --git a/jstests/mmap_v1/use_power_of_2.js b/jstests/mmap_v1/use_power_of_2.js
index a192a79653d..b3db7077e1d 100644
--- a/jstests/mmap_v1/use_power_of_2.js
+++ b/jstests/mmap_v1/use_power_of_2.js
@@ -5,14 +5,8 @@
*/
// prepare a doc of 14K
-var doc = {
- _id: new Object(),
- data: "a"
-};
-var bigDoc = {
- _id: new Object(),
- data: "a"
-};
+var doc = {_id: new Object(), data: "a"};
+var bigDoc = {_id: new Object(), data: "a"};
while (doc.data.length < 14 * 1024)
doc.data += "a";