Skip to content

Commit

Permalink
Update tile map test to expect formatted inspector headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeelmers committed Jun 24, 2020
1 parent b035324 commit eb9c6e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/apps/visualize/_tile_map.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export default function ({ getService, getPageObjects }) {
const vizName1 = 'Visualization TileMap';
await PageObjects.visualize.loadSavedVisualization(vizName1);
await inspector.open();
await inspector.expectTableHeaders(['filter', 'geohash_grid', 'Count', 'Geo Centroid']);
await inspector.expectTableHeaders(['Filter', 'Geohash', 'Count', 'Geo Centroid']);
await inspector.close();
});

Expand All @@ -216,7 +216,7 @@ export default function ({ getService, getPageObjects }) {
await PageObjects.visEditor.setIsFilteredByCollarCheckbox(false);
await PageObjects.visEditor.clickGo();
await inspector.open();
await inspector.expectTableHeaders(['geohash_grid', 'Count', 'Geo Centroid']);
await inspector.expectTableHeaders(['Geohash', 'Count', 'Geo Centroid']);
await inspector.close();
});

Expand Down

0 comments on commit eb9c6e2

Please sign in to comment.