summaryrefslogtreecommitdiff
path: root/jstests/tool/exportimport6.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/tool/exportimport6.js')
-rw-r--r--jstests/tool/exportimport6.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/jstests/tool/exportimport6.js b/jstests/tool/exportimport6.js
index a01d49a9c8b..0924638e628 100644
--- a/jstests/tool/exportimport6.js
+++ b/jstests/tool/exportimport6.js
@@ -5,12 +5,12 @@ t = new ToolTest("exportimport6");
c = t.startDB("foo");
assert.eq(0, c.count(), "setup1");
-c.save({a:1, b:1})
-c.save({a:1, b:2})
-c.save({a:2, b:3})
-c.save({a:2, b:3})
-c.save({a:3, b:4})
-c.save({a:3, b:5})
+c.save({a:1, b:1});
+c.save({a:1, b:2});
+c.save({a:2, b:3});
+c.save({a:2, b:3});
+c.save({a:3, b:4});
+c.save({a:3, b:5});
assert.eq(6, c.count(), "setup2");