diff options
Diffstat (limited to 'src/mongo/dbtests/jstests.cpp')
-rw-r--r-- | src/mongo/dbtests/jstests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/dbtests/jstests.cpp b/src/mongo/dbtests/jstests.cpp index 9782eedaacb..dd728132216 100644 --- a/src/mongo/dbtests/jstests.cpp +++ b/src/mongo/dbtests/jstests.cpp @@ -687,7 +687,7 @@ namespace JSTests { BSONObjBuilder result; string errmsg; dbEval( "test", cmd, result, errmsg); - assert(0); + verify(0); } DBDirectClient client; @@ -814,7 +814,7 @@ namespace JSTests { { BSONObj fromA = client.findOne( _a , BSONObj() ); - assert( fromA.valid() ); + verify( fromA.valid() ); //cout << "Froma : " << fromA << endl; BSONObjBuilder b; b.append( "b" , 18 ); |