Fix jshint typo

This commit is contained in:
Daniel García Aubert 2017-07-06 16:24:18 +02:00
parent 23aab7a09f
commit 32bcf9ca89

View File

@ -71,11 +71,10 @@ describe('user timeout limits', function () {
var mapConfig = createMapConfig(TestClient.CARTOCSS.POINTS);
var testClient = new TestClient(mapConfig, 1234);
testClient.getTile(4, 4, 4, {}, function (err, res, tile) {
testClient.getTile(4, 4, 4, {}, function (err, /* res, tile */) {
assert.ok(err, err);
// TODO: check timeout tile
testClient.drain(done)
testClient.drain(done);
});
});
});