Skip to content

Commit

Permalink
Remove workaround for JENKINS-73900 in CspRule (#1818)
Browse files Browse the repository at this point in the history
  • Loading branch information
haresahani authored Nov 5, 2024
1 parent 4bc289d commit d615ab3
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,9 @@ public void evaluate() throws Throwable {
base.evaluate();
} finally {
// TODO enable for ArtifactoryPluginTest when JENKINS-74047 is resolved
// TODO enable for SubversionPluginTest when JENKINS-73900 is resolved
if (isEnabled()
&& !isSkipped()
&& !d.getTestClass().getName().equals("plugins.ArtifactoryPluginTest")
&& !d.getTestClass().getName().equals("plugins.SubversionPluginTest")) {
&& !d.getTestClass().getName().equals("plugins.ArtifactoryPluginTest")) {
ContentSecurityPolicyReport csp = new ContentSecurityPolicyReport(jenkins);
csp.open();
List<String> lines = csp.getReport();
Expand Down

0 comments on commit d615ab3

Please # to comment.