Skip to content

Commit

Permalink
Fixed failing test. Apparently Chicago moved a few miles.
Browse files Browse the repository at this point in the history
  • Loading branch information
moshen committed Sep 30, 2010
1 parent 5d5eeb7 commit d15aa47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/geocode.js
Expand Up @@ -11,8 +11,8 @@ vows.describe('geocode').addBatch({
assert.equal(result.status , 'OK');
},
'returns the expected lat/lng for Chicago': function(err, result){
assert.equal(result.results[0].geometry.location.lat , 41.850033);
assert.equal(result.results[0].geometry.location.lng , -87.6500523);
assert.equal(result.results[0].geometry.location.lat , 41.8781136);
assert.equal(result.results[0].geometry.location.lng , -87.6297982);
}
}
}).export(module);
Expand Down

0 comments on commit d15aa47

Please sign in to comment.