Skip to content

Commit

Permalink
Merge pull request #326 from jglick/bump
Browse files Browse the repository at this point in the history
Bump baseline to pick up `ProxyException` fix
  • Loading branch information
jglick authored May 16, 2024
2 parents 58374d0 + 776f634 commit c7230bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
</pluginRepositories>
<properties>
<changelist>999999-SNAPSHOT</changelist>
<jenkins.version>2.361.4</jenkins.version>
<jenkins.version>2.426.3</jenkins.version>
<no-test-jar>false</no-test-jar>
<useBeta>true</useBeta>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
Expand All @@ -72,8 +72,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.361.x</artifactId>
<version>2102.v854b_fec19c92</version>
<artifactId>bom-2.426.x</artifactId>
<version>2555.v3190a_8a_c60c6</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit c7230bb

Please sign in to comment.