-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #576 from Vlatombe/historicalbuild
Whitelist method moved from `Run#getFullDisplayName` to `HistoricalBuild#getFullDisplayName`
- Loading branch information
Showing
2 changed files
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 ci.jenkins.io / Open Tasks ScannerTODO
|
||
new MethodSignature("jenkins.model.HistoricalBuild", "getFullDisplayName") | ||
)); | ||
|
||
@Test public void sanity() throws Exception { | ||
|