We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfb6845 commit 07a6ae3Copy full SHA for 07a6ae3
junit-jupiter-engine/src/main/java/org/junit/jupiter/engine/extension/MutableExtensionRegistry.java
@@ -110,8 +110,8 @@ private static void registerAutoDetectedExtensions(MutableExtensionRegistry exte
110
}
111
112
private static Predicate<String> createExtensionFilterByPatterns(String include, String exclude) {
113
- return ClassNamePatternFilterUtils.includeMatchingClassNames(include).and(
114
- ClassNamePatternFilterUtils.excludeMatchingClassNames(exclude));
+ return ClassNamePatternFilterUtils.includeMatchingClassNames(include) //
+ .and(ClassNamePatternFilterUtils.excludeMatchingClassNames(exclude));
115
116
117
/**
0 commit comments