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 e899436 commit 3ee1bacCopy full SHA for 3ee1bac
1 file changed
testkit/src/main/scala/org/apache/pekko/testkit/TestKitUtils.scala
@@ -50,7 +50,7 @@ private[pekko] object TestKitUtils {
50
.dropWhile {
51
case c if c.getName == startFrom => true
52
case c if c.getName.startsWith(startFrom + "$") => true // lambdas inside startFrom etc
53
- case c if testKitRegex().matches(c.getName) => true // testkit internals
+ case c if testKitRegex.matches(c.getName) => true // testkit internals
54
case c if isAbstractClass(c) => true
55
case _ => false
56
}
0 commit comments