diff options
author | Eliot Horowitz <eliot@10gen.com> | 2010-03-17 10:41:19 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2010-03-17 10:41:19 -0400 |
commit | ccd6e1bca56f0f0b42cbe2f79f087c116f1923be (patch) | |
tree | 560c1f644fdbd78643669276df42217452a91e03 /jstests/geo3.js | |
parent | a9d6f4d52e0f40d000a0df2599b4d619fb2e5f71 (diff) | |
download | mongo-ccd6e1bca56f0f0b42cbe2f79f087c116f1923be.tar.gz |
debugging and fix test for linux-32 after HOURS wasted chasing a phantom bug
Diffstat (limited to 'jstests/geo3.js')
-rw-r--r-- | jstests/geo3.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/geo3.js b/jstests/geo3.js index 793cb741867..6bf27f9ca37 100644 --- a/jstests/geo3.js +++ b/jstests/geo3.js @@ -48,7 +48,7 @@ function avgA( q , len ){ } function testFiltering( msg ){ - assert.eq( 1.5 , avgA( {} ) , msg + " testFiltering 1 " ); + assert.gt( 2 , avgA( {} ) , msg + " testFiltering 1 " ); assert.eq( 2 , avgA( { a : 2 } ) , msg + " testFiltering 2 " ); assert.eq( 4 , avgA( { a : 4 } ) , msg + " testFiltering 3 " ); } |