From f8dd3af5f781f919862ede6fd17e11740c15e1a4 Mon Sep 17 00:00:00 2001 From: Miko <39791814+okimiko@users.noreply.github.com> Date: Thu, 19 Dec 2024 10:04:15 +0100 Subject: [PATCH] Fix invalid test results --- test/static.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/static.js b/test/static.js index 32bd80c..7aa57b9 100644 --- a/test/static.js +++ b/test/static.js @@ -123,10 +123,11 @@ describe('Static endpoints', function () { }); describe('different parameters', function () { - testStatic(prefix, '-180,-90,180,90/20x20', 'png', 200, 2); + //invalid center + testStatic(prefix, '-180,-90,180,90/20x20', 'png', 400, 2); testStatic(prefix, '0,0,1,1/200x200', 'png', 200, 3); - - testStatic(prefix, '-280,-80,0,80/280x160', 'png', 200); + //invalid center + testStatic(prefix, '-280,-80,0,80/280x160', 'png', 400); }); });