Skip to content

Commit

Permalink
MINOR fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
astaple committed Dec 21, 2009
1 parent 499cb64 commit 83d4e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbtests/querytests.cpp
Expand Up @@ -846,7 +846,7 @@ namespace QueryTests {
BSONObj res;
for ( int i=0; i<1000; i++ ){
bool found = Helpers::findById( ns() , BSON( "_id" << i ) , res );
ASSERT_EQUALS( i % 2 , found );
ASSERT_EQUALS( i % 2 , int(found) );
}

}
Expand Down

0 comments on commit 83d4e4f

Please sign in to comment.