diff --git a/jenkinsfiles/test/Jenkinsfile b/jenkinsfiles/test/Jenkinsfile index 8e920386c5cfe2837b5ab44c33a254cc45abf523..39d60e4d30f470d3f1db846f642840dda2b5c393 100644 --- a/jenkinsfiles/test/Jenkinsfile +++ b/jenkinsfiles/test/Jenkinsfile @@ -13,7 +13,7 @@ pipeline { string(name: 'BASE_URL_DIENSTE', defaultValue: "https://xplanbox.lat-lon.de", description: 'Set base URL of XPlanDienste') string(name: 'BASE_URL_INSPIRE_PLU', defaultValue: "https://xplanbox.lat-lon.de", description: 'Set base URL of INSPIRE PLU') string(name: 'BASE_URL_MANAGER_API', defaultValue: "https://xplanbox.lat-lon.de", description: 'Set base URL of XPlanManagerAPI') - string(name: 'BASE_URL_Validator_WEB', defaultValue: "https://xplanbox.lat-lon.de", description: 'Set base URL of XPlanValidatorWeb') + string(name: 'BASE_URL_Validator_WEB', defaultValue: "https://xplanbox.lat-lon.de/xplan-validator-web", description: 'Set base URL of XPlanValidatorWeb') string(name: 'BASE_URL_DOKUMENTEN_API', defaultValue: "https://xplanbox.lat-lon.de", description: 'Set base URL of XPlanDokumentenAPI') string(name: 'BASE_URL_MAPSERVER', defaultValue: "https://xplanbox.lat-lon.de", description: 'Set base URL of MapServer') string(name: 'BASE_URL_MAPPROXY', defaultValue: "https://xplanbox.lat-lon.de", description: 'Set base URL of MapProxy') diff --git a/xplan-tests/xplan-tests-selenium/src/test/java/de/latlon/xplanbox/tests/selenium/validatorweb/XPlanValidatorWebIT.java b/xplan-tests/xplan-tests-selenium/src/test/java/de/latlon/xplanbox/tests/selenium/validatorweb/XPlanValidatorWebIT.java index 96e2060b50f2290175edef098327391a7f548039..1fc409c24dd084ecb19e2162608ba43aa1d53d25 100644 --- a/xplan-tests/xplan-tests-selenium/src/test/java/de/latlon/xplanbox/tests/selenium/validatorweb/XPlanValidatorWebIT.java +++ b/xplan-tests/xplan-tests-selenium/src/test/java/de/latlon/xplanbox/tests/selenium/validatorweb/XPlanValidatorWebIT.java @@ -36,7 +36,7 @@ class XPlanValidatorWebIT { @BeforeAll static void readSystemProperties() { - String url = System.getProperty("baseUrlValidatorWeb", "https://xplanbox.lat-lon.de"); + String url = System.getProperty("baseUrlValidatorWeb", "https://xplanbox.lat-lon.de/xplan-validator-web"); String username = System.getProperty("username", null); String password = System.getProperty("password", null); connectUrl = createConnectUrl(url, username, password);