From c6124a658e96cee380cb119189cb39e0d015eb1d Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Fri, 16 May 2025 10:51:42 -0400 Subject: [PATCH] Change rain defense to rain repel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrects the premium service package description to align with the updated service offering. The text "Rain Defense™" is replaced with "Rain repel treatment" for accuracy and consistency. --- playwright-tests/pages/PaymentMethodPage.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/playwright-tests/pages/PaymentMethodPage.ts b/playwright-tests/pages/PaymentMethodPage.ts index 2c267c69e..0705955f9 100644 --- a/playwright-tests/pages/PaymentMethodPage.ts +++ b/playwright-tests/pages/PaymentMethodPage.ts @@ -148,7 +148,7 @@ export class PaymentMethodPage extends BasePage { expect.soft(servicePackageValue).toContain('New wiper blades'); } if (servicePackage === ServicePackage.Premium) { - expect.soft(servicePackageValue).toContain('Rain Defense™'); + expect.soft(servicePackageValue).toContain('Rain repel treatment'); } // Promo Code Validation @@ -383,8 +383,8 @@ l : stringForReplace; break; case ServicePackage.Premium: - stringForRepair.push("New wiper blades", "Rain Defense™"); - stringForReplace.push("New wiper blades", "Rain Defense™"); + stringForRepair.push("New wiper blades", "Rain repel treatment"); + stringForReplace.push("New wiper blades", "Rain repel treatment"); expectedServicePackageDetails["Premium service"] = isRepair ? stringForRepair : stringForReplace;