Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed Oct 11, 2021
1 parent a483ad1 commit fb78340
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/test/api_integration/apis/maps/get_tile.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function ({ getService }) {
expect(layer.length).to.be(3); // 2 docs + the metadata feature

// Verify ES document
const feature = layer.feature.find(feature => {
const feature = layer.feature.find((feature) => {
return feature.properties._id === 'AU_x3_BsGFA8no6Qjjug';
});
expect(feature).not.to.be(undefined);
Expand All @@ -49,7 +49,7 @@ export default function ({ getService }) {
expect(feature.loadGeometry()).to.eql([[{ x: 44, y: 2382 }]]);

// Verify metadata feature
const metadataFeature = layer.feature.find(feature => {
const metadataFeature = layer.feature.find((feature) => {
return feature.properties.__kbn_metadata_feature__;
});
expect(metadataFeature).not.to.be(undefined);
Expand Down

0 comments on commit fb78340

Please sign in to comment.