Skip to content

Commit

Permalink
CR feedback - round 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitrox committed Aug 27, 2024
1 parent 9c30663 commit 103ae13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const defaultPaidAds = {
recommendations: [],
isValid: false,
isReady: false,
recommendationData: {},
recommendationData: null,
};

/*
Expand Down
4 changes: 3 additions & 1 deletion tests/e2e/utils/pages/setup-ads/setup-budget.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ export default class SetupBudget extends MockRequests {
* @return {import('@playwright/test').Locator} The budget recommendation text row.
*/
getBudgetRecommendationTip() {
return this.page.locator( '.components-tip p' );
return this.page.locator(
'.gla-budget-recommendation > .components-tip'
);
}

/**
Expand Down

0 comments on commit 103ae13

Please sign in to comment.