summaryrefslogtreecommitdiff
path: root/dbtests
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-03-22 17:44:20 -0400
committerEliot Horowitz <eliot@10gen.com>2010-03-22 17:44:20 -0400
commitf5e10fef7641d6aae6d129337a10b89bb57ec120 (patch)
tree86aed1caf2676096ba41d12a4c7137d9b0135e98 /dbtests
parent2b79d806c204fe7b4782df59067921fc22202d24 (diff)
downloadmongo-f5e10fef7641d6aae6d129337a10b89bb57ec120.tar.gz
semantic change
Diffstat (limited to 'dbtests')
-rw-r--r--dbtests/querytests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbtests/querytests.cpp b/dbtests/querytests.cpp
index 3c49a97ea39..f1755439cb7 100644
--- a/dbtests/querytests.cpp
+++ b/dbtests/querytests.cpp
@@ -628,7 +628,7 @@ namespace QueryTests {
void check( const string &hintField ) {
const char *ns = "unittests.querytests.SubobjArr";
ASSERT( client().query( ns, Query( "{'a.b':1}" ).hint( BSON( hintField << 1 ) ) )->more() );
- ASSERT( !client().query( ns, Query( "{'a.b':[1]}" ).hint( BSON( hintField << 1 ) ) )->more() );
+ ASSERT( client().query( ns, Query( "{'a.b':[1]}" ).hint( BSON( hintField << 1 ) ) )->more() );
}
};