From e6f2cfd376f9f559406c1537ab4dbfe231a544fd Mon Sep 17 00:00:00 2001 From: Pierre-Yves B Date: Sun, 11 Jul 2021 19:14:13 +0100 Subject: [PATCH] Fix [JenkinsTests] test (#6758) --- services/jenkins/jenkins-tests.tester.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/services/jenkins/jenkins-tests.tester.js b/services/jenkins/jenkins-tests.tester.js index a9269c9bd6..c2bdcbefa5 100644 --- a/services/jenkins/jenkins-tests.tester.js +++ b/services/jenkins/jenkins-tests.tester.js @@ -56,11 +56,9 @@ t.create('Test status with compact message and custom labels') }) t.create('Test status on job with no tests') - .get( - '/tests.json?jobUrl=https://ci.eclipse.org/openj9/job/Build-Doc-Push_to_ghpages' - ) + .get('/tests.json?jobUrl=https://ci.eclipse.org/orbit/job/orbit-recipes') .expectBadge({ label: 'tests', message: 'no tests found' }) t.create('Test status on non-existent job') - .get('/tests.json?jobUrl=https://ci.eclipse.org/openj9/job/does-not-exist') + .get('/tests.json?jobUrl=https://ci.eclipse.org/orbit/job/does-not-exist') .expectBadge({ label: 'tests', message: 'instance or job not found' })