diff --git a/services/jenkins/jenkins-coverage.tester.js b/services/jenkins/jenkins-coverage.tester.js index 51a49326d0b85..0c68b9bbcac7f 100644 --- a/services/jenkins/jenkins-coverage.tester.js +++ b/services/jenkins/jenkins-coverage.tester.js @@ -9,17 +9,17 @@ const t = (module.exports = require('../tester').createServiceTester()) // https://wiki.jenkins.io/pages/viewpage.action?pageId=58001258 t.create('jacoco: job found') - .get('/jacoco/https/builds.apache.org/job/Derby-JaCoCo.json') + .get('/jacoco/https/wso2.org/jenkins/view/All%20Builds/job/archetypes.json') .expectBadge({ label: 'coverage', message: isIntegerPercentage }) t.create('jacoco: job not found') - .get('/jacoco/https/builds.apache.org/job/does-not-exist.json') + .get('/jacoco/https/wso2.org/jenkins/job/does-not-exist.json') .expectBadge({ label: 'coverage', message: 'job or coverage not found' }) t.create('cobertura: job not found') - .get('/cobertura/https/builds.apache.org/job/does-not-exist.json') + .get('/cobertura/https/jenkins.sqlalchemy.org/job/does-not-exist.json') .expectBadge({ label: 'coverage', message: 'job or coverage not found' }) t.create('cobertura: job found') - .get('/cobertura/https/builds.apache.org/job/olingo-odata4-cobertura.json') + .get('/cobertura/https/jenkins.sqlalchemy.org/alembic_coverage.json') .expectBadge({ label: 'coverage', message: isIntegerPercentage }) diff --git a/services/jenkins/jenkins-tests.tester.js b/services/jenkins/jenkins-tests.tester.js index 9b65621f98806..81a98baae8cbe 100644 --- a/services/jenkins/jenkins-tests.tester.js +++ b/services/jenkins/jenkins-tests.tester.js @@ -63,5 +63,5 @@ t.create('Test status on job with no tests') .expectBadge({ label: 'tests', message: 'no tests found' }) t.create('Test status on non-existent job') - .get('/https/updates.jenkins-ci.org/job/does-not-exist.json') + .get('/https/ci.eclipse.org/openj9/job/does-not-exist.json') .expectBadge({ label: 'tests', message: 'instance or job not found' })