Skip to content

Commit

Permalink
Fix soft dep to new core
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlatombe committed Aug 28, 2024
1 parent 6bd5746 commit b12683a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ static void sanity(URL definition) throws Exception {
new MethodSignature(MatchResult.class, "group", String.class),
new MethodSignature(MatchResult.class, "hasMatch"),
new MethodSignature(MatchResult.class, "namedGroups"),
new MethodSignature(MatchResult.class, "start", String.class)
new MethodSignature(MatchResult.class, "start", String.class),
// TODO Do not exist until Jenkins includes https://github.com/jenkinsci/jenkins/pull/9674

Check warning on line 159 in src/test/java/org/jenkinsci/plugins/scriptsecurity/sandbox/whitelists/StaticWhitelistTest.java

View check run for this annotation

ci.jenkins.io / Open Tasks Scanner

TODO

NORMAL: Do not exist until Jenkins includes https://github.com/jenkinsci/jenkins/pull/9674
new MethodSignature("jenkins.model.HistoricalBuild", "getFullDisplayName")
));

@Test public void sanity() throws Exception {
Expand Down

0 comments on commit b12683a

Please sign in to comment.