Skip to content

Commit

Permalink
Update junit-jupiter-engine/src/main/java/org/junit/jupiter/engine/ex…
Browse files Browse the repository at this point in the history
…tension/MutableExtensionRegistry.java

Co-authored-by: Marc Philipp <mail@marcphilipp.de>
  • Loading branch information
YongGoose and marcphilipp authored Nov 14, 2024
1 parent cfb6845 commit 07a6ae3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ private static void registerAutoDetectedExtensions(MutableExtensionRegistry exte
}

private static Predicate<String> createExtensionFilterByPatterns(String include, String exclude) {
return ClassNamePatternFilterUtils.includeMatchingClassNames(include).and(
ClassNamePatternFilterUtils.excludeMatchingClassNames(exclude));
return ClassNamePatternFilterUtils.includeMatchingClassNames(include) //
.and(ClassNamePatternFilterUtils.excludeMatchingClassNames(exclude));
}

/**
Expand Down

0 comments on commit 07a6ae3

Please sign in to comment.