File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ public void testLastErrorWithConcern()
55
55
56
56
_db .resetError ();
57
57
CommandResult cr = _db .getLastError (WriteConcern .FSYNC_SAFE );
58
- System .out .println (cr );
59
58
assert (cr .get ("err" ) == null );
60
59
assert (cr .containsField ("fsyncFiles" ));
61
60
}
Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ public void test1()
49
49
m .put ( "state" , "ny" );
50
50
51
51
c .save ( m );
52
- System .out .println ( m .keySet () );
53
52
assert ( m .containsField ( "_id" ) );
54
53
55
54
Map out = (Map )(c .findOne ( m .get ( "_id" )));
@@ -610,7 +609,6 @@ public void testWriteResultWithGetLastErrorWithDifferentConcerns(){
610
609
CommandResult cr = res .getLastError ( WriteConcern .FSYNC_SAFE );
611
610
assertEquals ( 1 , cr .getInt ( "n" ) );
612
611
assertTrue ( cr .containsField ( "fsyncFiles" ));
613
- System .out .println (cr );
614
612
615
613
CommandResult cr2 = res .getLastError ( WriteConcern .FSYNC_SAFE );
616
614
assertTrue ( cr == cr2 );
You can’t perform that action at this time.
0 commit comments