diff --git a/e2e/paths/ticket-module/03_list_sale.spec.js b/e2e/paths/ticket-module/03_list_sale.spec.js index f62ac21e6..bbc2d56b6 100644 --- a/e2e/paths/ticket-module/03_list_sale.spec.js +++ b/e2e/paths/ticket-module/03_list_sale.spec.js @@ -64,11 +64,11 @@ describe('Ticket', () => { .wait(selectors.ticketSales.secondSaleText) .getInnerText(selectors.ticketSales.secondSaleText) .then(value => { - expect(value).toContain('Yellow'); - expect(value).toContain('2'); - expect(value).toContain('€23.50'); + expect(value).toContain('Red'); + expect(value).toContain('10'); + expect(value).toContain('€4.50'); expect(value).toContain('0 %'); - expect(value).toContain('€47.00'); + expect(value).toContain('€45.00'); }); }); });