Fix bad assertion

This commit is contained in:
Daniel García Aubert 2018-01-03 12:24:07 +01:00
parent 1c7da2c4b3
commit 60005e2f7f

View File

@ -1271,9 +1271,7 @@ describe('aggregation', function () {
const tileJSON = tile.toJSON();
tileJSON[0].features.forEach(feature => {
assert.equal(typeof feature.properties.value, 'number');
});
assert.equal(tileJSON[0].features.length, 7);
done();
});
@ -1324,9 +1322,7 @@ describe('aggregation', function () {
const tileJSON = tile.toJSON();
tileJSON[0].features.forEach(feature => {
assert.equal(typeof feature.properties.value, 'number');
});
assert.equal(tileJSON[0].features.length, 7);
done();
});