Skip to content

Commit

Permalink
update hardcoded colors in dashboard group 3 FTRs
Browse files Browse the repository at this point in the history
  • Loading branch information
tkajtoch committed Jan 9, 2025
1 parent cfed787 commit a1fb80b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/functional/apps/dashboard/group3/dashboard_state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await queryBar.clickQuerySubmitButton();

await visChart.openLegendOptionColorsForXY('Count', `[data-title="${visName}"]`);
const overwriteColor = '#ed6ba2';
const overwriteColor = '#64d8d5';
await visChart.selectNewLegendColorChoice(overwriteColor);

await dashboard.saveDashboard(dashboardName, { saveAsNew: false });
Expand Down
2 changes: 1 addition & 1 deletion test/functional/page_objects/visualize_chart_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export class VisualizeChartPageObject extends FtrService {

await this.waitForVisualizationRenderingStabilized();
// arbitrary color chosen, any available would do
const arbitraryColor = '#ed6ba2';
const arbitraryColor = '#ee72a6';
const isOpen = await this.doesLegendColorChoiceExist(arbitraryColor);
if (!isOpen) {
throw new Error('legend color selector not open');
Expand Down

0 comments on commit a1fb80b

Please sign in to comment.