Skip to content

Commit

Permalink
Suppress more core CSS warnings (#275)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Beck <daniel-beck@users.noreply.github.com>
  • Loading branch information
daniel-beck and daniel-beck authored Feb 24, 2021
1 parent 6a93e94 commit 74c1765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jvnet/hudson/test/JenkinsRule.java
Original file line number Diff line number Diff line change
Expand Up @@ -2266,7 +2266,7 @@ private boolean ignore(final CSSParseException exception) {
String uri = exception.getURI();
return uri.contains("/yui/")
// TODO JENKINS-14749: these are a mess today, and we know that
|| uri.contains("/css/style.css") || uri.contains("/css/responsive-grid.css");
|| uri.contains("/css/style.css") || uri.contains("/css/responsive-grid.css") || uri.contains("/base-styles-v2.css");
}
});

Expand Down

0 comments on commit 74c1765

Please sign in to comment.