Skip to content

Commit dfe3fc5

Browse files
authored
Merge pull request #55 from Lajcik/junit5-intellij-filtering
2 parents ad0889b + 938f68a commit dfe3fc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ha-trace/src/main/java/com/g2forge/habitat/trace/EntrypointFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public enum EntrypointFilter {
2727
MOCKITO(new String[] { "org.mockito." }, true),
2828
JUNIT(new String[] { "org.junit.", "junit." }, true),
2929
ECLIPSEJUNIT(new String[] { "org.eclipse.jdt.internal.junit.", "org.eclipse.jdt.internal.junit4." }, true),
30-
INTELLIJJUNIT(new String[] { "com.intellij.junit4." }, true),
30+
INTELLIJJUNIT(new String[] { "com.intellij.junit4.", "com.intellij.junit5." }, true),
3131
SUREFIRE(new String[] { "org.apache.maven.surefire." }, true);
3232

3333
public static final Set<EntrypointFilter> ALL = EnumSet.allOf(EntrypointFilter.class);

0 commit comments

Comments
 (0)