Skip to content

Commit

Permalink
Adjust format by spotlessApply task
Browse files Browse the repository at this point in the history
Signed-off-by: Tianli Feng <[email protected]>
  • Loading branch information
Tianli Feng committed Apr 6, 2022
1 parent 7adeafb commit d46d147
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -370,10 +370,7 @@ public void test() throws IOException {
// skip test if it matches one of the denylist globs
for (DenylistedPathPatternMatcher denylistedPathMatcher : denylistPathMatchers) {
String testPath = testCandidate.getSuitePath() + "/" + testCandidate.getTestSection().getName();
assumeFalse(
"[" + testCandidate.getTestPath() + "] skipped, reason: denylisted",
denylistedPathMatcher.isSuffixMatch(testPath)
);
assumeFalse("[" + testCandidate.getTestPath() + "] skipped, reason: denylisted", denylistedPathMatcher.isSuffixMatch(testPath));
}

// skip test if the whole suite (yaml file) is disabled
Expand Down

0 comments on commit d46d147

Please sign in to comment.