Fix invalid test results

This commit is contained in:
Miko 2024-12-19 10:04:15 +01:00 committed by GitHub
parent 751fb7b5a5
commit f8dd3af5f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);
});
});