From 1030e88aa3570f38d0c19cf3b4ddcc4477de2794 Mon Sep 17 00:00:00 2001 From: Roman Hotsiy Date: Fri, 10 Jan 2020 17:04:13 +0200 Subject: [PATCH] tests: fix tests for empty servers --- e2e/integration/misc.e2e.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/integration/misc.e2e.ts b/e2e/integration/misc.e2e.ts index 5a3d1747..f90b4378 100644 --- a/e2e/integration/misc.e2e.ts +++ b/e2e/integration/misc.e2e.ts @@ -42,7 +42,7 @@ describe('Servers', () => { // TODO add cy-data attributes cy.get('[data-section-id="operation/addPet"]').should( 'contain', - 'http://localhost:' + win.location.port + '/e2e/pet', + 'http://localhost:' + win.location.port + '/pet', ); }); }); @@ -57,7 +57,7 @@ describe('Servers', () => { // TODO add cy-data attributes cy.get('[data-section-id="operation/addPet"]').should( 'contain', - 'http://localhost:' + win.location.port + '/e2e/pet', + 'http://localhost:' + win.location.port + '/pet', ); }); });