From dc1ce25935bbc08da77d447af6825062722159f4 Mon Sep 17 00:00:00 2001 From: Clancy Walters Date: Tue, 19 Mar 2024 22:46:31 +1100 Subject: [PATCH] updated incorrect unit test --- test/unit/sanitizer/wrap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/sanitizer/wrap.js b/test/unit/sanitizer/wrap.js index 7eeb1eef6..708e479f1 100644 --- a/test/unit/sanitizer/wrap.js +++ b/test/unit/sanitizer/wrap.js @@ -93,7 +93,7 @@ module.exports.tests.latitude_negative = function(test, common) { t.equal(norm.lon, 0); t.end(); }); - test('positive latitude wrapping - 721 degrees', function (t) { + test('negative latitude wrapping - 721 degrees', function (t) { var norm = wrap(-721, 0); t.equal(norm.lat, -1); t.equal(norm.lon, 0);