Skip to content

Commit

Permalink
test: use looser latitude range for Ti.Geolocation.forwardGeocoder()
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtcoolguy committed Jan 8, 2021
1 parent 6aa7c83 commit 159be91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Resources/ti.geolocation.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ describe.windowsBroken('Titanium.Geolocation', function () {
should(data.success).be.be.true();
should(data).have.property('code').which.is.a.Number();
should(data.code).be.eql(0);
should(data.latitude).be.approximately(37.387, 0.004); // iOS: 37.38605, Windows: 37.3883645, Android: 37.3909049
should(data.latitude).be.approximately(37.395, 0.02); // iOS: 37.38605, Windows: 37.3883645, Android: 37.3910366, new iOS: 37.4056
should(data.longitude).be.approximately(-122.065, 0.02); // Windows: -122.0512682, iOS: -122.08385, Android: -122.0472468
finish();
} catch (err) {
Expand Down

0 comments on commit 159be91

Please sign in to comment.