fix errored value in test

This commit is contained in:
Simon Martín 2018-04-12 11:27:31 +02:00
parent b4ca44f096
commit fc36950c1d

View File

@ -166,8 +166,9 @@ describe('MVT Mapnik', function () {
const geojsonTile = JSON.parse(MVT.toGeoJSONSync(0));
assert.strictEqual(geojsonTile.features[0].properties.status, false);
assert.strictEqual(geojsonTile.features[0].properties.data, undefined);
assert.strictEqual(geojsonTile.features[0].properties.data, 0);
done();
});
});
});