Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
dwight committed Mar 2, 2011
1 parent 8a8ede6 commit 7c44081
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion jstests/index_bigkeys.js
Expand Up @@ -39,7 +39,10 @@ function check() {
print("keycount:" + c); print("keycount:" + c);


if (expect) { if (expect) {
assert.eq( expect , c , "count of keys doesn't match expected count of" ) if (expect != c) {
print("count of keys doesn't match expected count of : " + expect + " got: " + c);
ok = false;
}
} }
else { else {
expect = c; expect = c;
Expand Down

0 comments on commit 7c44081

Please sign in to comment.