diff --git a/cypress/integration/hyva/catalog/category.spec.js b/cypress/integration/hyva/catalog/category.spec.js index cc9add4..640fe42 100644 --- a/cypress/integration/hyva/catalog/category.spec.js +++ b/cypress/integration/hyva/catalog/category.spec.js @@ -22,7 +22,7 @@ describe("Category page tests", () => { .eq(1) .invoke("data", "price-amount") .then((secondPrice) => { - expect(firstPrice).to.be.lessThan(secondPrice); + expect(firstPrice).to.be.lte(secondPrice); }); }); });