Skip to content

Commit

Permalink
Merge pull request #1084 from jglick/deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlatombe authored Dec 7, 2021
2 parents fc67fae + 644f700 commit 197d9fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<jenkins.host.address />
<slaveAgentPort />
<java.level>8</java.level>
<jenkins.version>2.263.1</jenkins.version>
<jenkins.version>2.303.3</jenkins.version>
<no-test-jar>false</no-test-jar>
<useBeta>true</useBeta>
</properties>
Expand Down Expand Up @@ -256,8 +256,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.263.x</artifactId>
<version>984.vb5eaac999a7e</version>
<artifactId>bom-2.303.x</artifactId>
<version>1036.v9f5a1aba8fab</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public void declarativeWithNestedExplicitInheritance() throws Exception {
@Test
public void declarativeWithNonexistentDockerImage() throws Exception {
assertNotNull(createJobThenScheduleRun());
r.assertBuildStatus(Result.FAILURE, r.waitForCompletion(b));
r.assertBuildStatus(Result.ABORTED, r.waitForCompletion(b));
r.assertLogContains("ERROR: Unable to pull Docker image", b);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -682,9 +682,9 @@ public void dynamicPVC() throws Exception {

@Test
public void invalidPodGetsCancelled() throws Exception {
r.assertBuildStatus(Result.FAILURE, r.waitForCompletion(b));
r.assertBuildStatus(Result.ABORTED, r.waitForCompletion(b));
r.assertLogContains("ERROR: Unable to create pod", b);
r.assertLogContains("ERROR: Queue task was cancelled", b);
r.assertLogContains("Queue task was cancelled", b);
}

@Issue("SECURITY-1646")
Expand Down

0 comments on commit 197d9fb

Please sign in to comment.