summaryrefslogtreecommitdiff
path: root/jstests/gle/sync1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/gle/sync1.js')
-rw-r--r--jstests/gle/sync1.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/jstests/gle/sync1.js b/jstests/gle/sync1.js
index c840ff8fac5..d370c53f949 100644
--- a/jstests/gle/sync1.js
+++ b/jstests/gle/sync1.js
@@ -11,12 +11,12 @@ if (test.conn.writeMode() == 'commands') {
}
else {
- db = test.conn.getDB( "test" )
- t = db.sync1
- t.save( { x : 1 } )
+ db = test.conn.getDB( "test" );
+ t = db.sync1;
+ t.save( { x : 1 } );
assert.eq( 1 , t.find().itcount() , "A1" );
assert.eq( 1 , t.find().count() , "A2" );
- t.save( { x : 2 } )
+ t.save( { x : 2 } );
assert.eq( 2 , t.find().itcount() , "A3" );
assert.eq( 2 , t.find().count() , "A4" );
@@ -45,15 +45,15 @@ else {
assert.eq( 2 , t.find().itcount() , "C1" );
assert.soon( function(){
try {
- t.remove( { x : 1 } )
+ t.remove( { x : 1 } );
return true;
}
catch ( e ){
print( e );
}
return false;
- } )
- t.find().forEach( printjson )
+ } );
+ t.find().forEach( printjson );
assert.eq( 1 , t.find().itcount() , "C2" );
test.stop();