From db08fc3da2476fdab23916b6659fc0a8092cc16f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa=20Aubert?= Date: Fri, 16 Mar 2018 18:58:42 +0100 Subject: [PATCH] Remove meaningless test --- test/acceptance/ported/regressions.js | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/test/acceptance/ported/regressions.js b/test/acceptance/ported/regressions.js index dd765b57..71fd8388 100644 --- a/test/acceptance/ported/regressions.js +++ b/test/acceptance/ported/regressions.js @@ -8,21 +8,6 @@ describe('regressions', function() { testHelper.rmdirRecursiveSync(global.environment.millstone.cache_basedir); }); - // See https://github.com/Vizzuality/Windshaft/issues/65 - it("#65 catching non-Error exception doesn't kill the backend", function(done) { - var mapConfig = testClient.defaultTableMapConfig('test_table'); - testClient.withLayergroup(mapConfig, function(err, requestTile, finish) { - var options = { - statusCode: 400, - contentType: 'application/json; charset=utf-8' - }; - requestTile('/0/0/0.png?testUnexpectedError=1', options, function(err, res) { - assert.deepEqual(JSON.parse(res.body).errors, ["test unexpected error"]); - finish(done); - }); - }); - }); - // Test that you cannot write to the database from a tile request // // See http://github.com/CartoDB/Windshaft/issues/130