diff --git a/pom.xml b/pom.xml index 6d6a116b..3c420334 100644 --- a/pom.xml +++ b/pom.xml @@ -63,7 +63,7 @@ 999999-SNAPSHOT - 2.361.4 + 2.426.3 false true jenkinsci/${project.artifactId}-plugin @@ -72,8 +72,8 @@ io.jenkins.tools.bom - bom-2.361.x - 2102.v854b_fec19c92 + bom-2.426.x + 2555.v3190a_8a_c60c6 import pom diff --git a/src/test/java/org/jenkinsci/plugins/workflow/actions/ErrorActionTest.java b/src/test/java/org/jenkinsci/plugins/workflow/actions/ErrorActionTest.java index 53d4dd1b..6165330e 100644 --- a/src/test/java/org/jenkinsci/plugins/workflow/actions/ErrorActionTest.java +++ b/src/test/java/org/jenkinsci/plugins/workflow/actions/ErrorActionTest.java @@ -40,7 +40,6 @@ import org.jenkinsci.plugins.workflow.job.WorkflowJob; import org.jenkinsci.plugins.workflow.job.WorkflowRun; import org.junit.ClassRule; -import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.jvnet.hudson.test.BuildWatcher; @@ -237,7 +236,6 @@ public static class X extends Exception { assertNotNull(new ErrorAction(cyclic2)); } - @Ignore("TODO: broken until https://github.com/jenkinsci/remoting/pull/645 is picked up") @Test public void unserializableCyclicErrorsAreSupported() throws Throwable { Exception unserializable = new MissingMethodException("thisMethodDoesNotExist", String.class, new Object[0]); Exception cyclic = new Exception(unserializable);