diff --git a/akka-actor-tests/src/test/scala/akka/actor/ActorSystemSpec.scala b/akka-actor-tests/src/test/scala/akka/actor/ActorSystemSpec.scala index 259945053d..9e7df54f74 100644 --- a/akka-actor-tests/src/test/scala/akka/actor/ActorSystemSpec.scala +++ b/akka-actor-tests/src/test/scala/akka/actor/ActorSystemSpec.scala @@ -181,7 +181,7 @@ class ActorSystemSpec extends AkkaSpec(ActorSystemSpec.config) with ImplicitSend a.tell("run", probe.ref) probe.expectTerminated(a) - a.tell("boom", ActorRef.noSender) + // Expecting two log entries: one from the actor system at info level and one at warning level from the logging testkit EventFilter .info(pattern = ".*not delivered", occurrences = 1) .intercept {