From 3967aecfdcd60bafd77cea39a5a2d5537ce4cdd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa=20Aubert?= Date: Wed, 18 Mar 2020 19:45:31 +0100 Subject: [PATCH] Fix test where http-fallback-image renderer was failing quietly --- test/acceptance/ported/support/ported-server-options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/acceptance/ported/support/ported-server-options.js b/test/acceptance/ported/support/ported-server-options.js index 094cbfa6..57f85d28 100644 --- a/test/acceptance/ported/support/ported-server-options.js +++ b/test/acceptance/ported/support/ported-server-options.js @@ -41,7 +41,7 @@ module.exports = _.extend({}, serverOptions, { whitelist: ['http://127.0.0.1:8033/{s}/{z}/{x}/{y}.png'], fallbackImage: { type: 'fs', - src: path.join(__dirname, '/../../test/fixtures/http/basemap.png') + src: path.join(__dirname, '/../../../fixtures/http/basemap.png') } } },