Skip to content

Commit 3ee1bac

Browse files
committed
Update TestKitUtils.scala
1 parent e899436 commit 3ee1bac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

testkit/src/main/scala/org/apache/pekko/testkit/TestKitUtils.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ private[pekko] object TestKitUtils {
5050
.dropWhile {
5151
case c if c.getName == startFrom => true
5252
case c if c.getName.startsWith(startFrom + "$") => true // lambdas inside startFrom etc
53-
case c if testKitRegex().matches(c.getName) => true // testkit internals
53+
case c if testKitRegex.matches(c.getName) => true // testkit internals
5454
case c if isAbstractClass(c) => true
5555
case _ => false
5656
}

0 commit comments

Comments
 (0)