Skip to content

Commit

Permalink
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
Browse files Browse the repository at this point in the history
…-fix'
  • Loading branch information
kibanamachine committed Apr 12, 2022
1 parent 5bd4e1e commit 50e4a84
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions x-pack/test/functional/apps/maps/mvt_joins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const layerTOCDetails = await PageObjects.maps.getLayerTOCDetails('geo_shapes*');
const split = layerTOCDetails.trim().split('\n');

//field display name
// field display name
expect(split[0]).to.equal('max prop1');

//bands 1-8
// bands 1-8
expect(split[1]).to.equal('< 4.13');
expect(split[2]).to.equal('4.13 up to 5.25');
expect(split[3]).to.equal('5.25 up to 6.38');
Expand Down Expand Up @@ -68,10 +68,10 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const layerTOCDetails = await PageObjects.maps.getLayerTOCDetails('geo_shapes*');
const split = layerTOCDetails.trim().split('\n');

//field display name
// field display name
expect(split[0]).to.equal('max prop1');

//bands 1-8
// bands 1-8
expect(split[1]).to.equal('< 3.63');
expect(split[2]).to.equal('3.63 up to 4.25');
expect(split[3]).to.equal('4.25 up to 4.88');
Expand All @@ -91,6 +91,5 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
expect(Math.ceil(zoom)).to.equal(5);
});
});

});
}
}

0 comments on commit 50e4a84

Please sign in to comment.