summaryrefslogtreecommitdiff
path: root/jstests/core/index_bigkeys_update.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index_bigkeys_update.js')
-rw-r--r--jstests/core/index_bigkeys_update.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/jstests/core/index_bigkeys_update.js b/jstests/core/index_bigkeys_update.js
index 6bdaf033542..a3074bfdfdd 100644
--- a/jstests/core/index_bigkeys_update.js
+++ b/jstests/core/index_bigkeys_update.js
@@ -1,18 +1,18 @@
bigString = "";
-while ( bigString.length < 16000 )
+while (bigString.length < 16000)
bigString += ".";
t = db.index_bigkeys_update;
t.drop();
-t.insert( { _id : 0, x : "asd" } );
-t.ensureIndex( { x : 1 } );
+t.insert({_id: 0, x: "asd"});
+t.ensureIndex({x: 1});
-assert.eq( 1, t.count() );
+assert.eq(1, t.count());
-assert.writeError(t.update( {} , { $set : { x : bigString } } ));
+assert.writeError(t.update({}, {$set: {x: bigString}}));
-assert.eq( 1, t.count() );
-assert.eq( "asd", t.findOne().x ); // make sure doc is the old version
-assert.eq( "asd", t.findOne( { _id : 0 } ).x ); // make sure doc is the old version
+assert.eq(1, t.count());
+assert.eq("asd", t.findOne().x); // make sure doc is the old version
+assert.eq("asd", t.findOne({_id: 0}).x); // make sure doc is the old version