We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f6596d commit e6f532bCopy full SHA for e6f532b
test/unit/sanitizer/wrap.js
@@ -93,9 +93,9 @@ module.exports.tests.latitude_negative = function(test, common) {
93
t.equal(norm.lon, 0);
94
t.end();
95
});
96
- test('positive latitude wrapping - 721 degrees', function (t) {
97
- var norm = wrap(721, 0);
98
- t.equal(norm.lat, 1);
+ test('negative latitude wrapping - 721 degrees', function (t) {
+ var norm = wrap(-721, 0);
+ t.equal(norm.lat, -1);
99
100
101
0 commit comments