From de899ee2dfec83925ef77a99f3c8cbee433e3e55 Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Tue, 2 Oct 2012 11:01:06 +0200 Subject: [PATCH] Mute expected unhandled msg, see #2010 --- .../src/test/scala/akka/actor/ActorTimeoutSpec.scala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/akka-actor-tests/src/test/scala/akka/actor/ActorTimeoutSpec.scala b/akka-actor-tests/src/test/scala/akka/actor/ActorTimeoutSpec.scala index 6017606fa0..4eed96b0c5 100644 --- a/akka-actor-tests/src/test/scala/akka/actor/ActorTimeoutSpec.scala +++ b/akka-actor-tests/src/test/scala/akka/actor/ActorTimeoutSpec.scala @@ -5,6 +5,7 @@ package akka.actor import scala.concurrent.util.duration._ import akka.testkit._ +import akka.testkit.TestEvent._ import scala.concurrent.Await import akka.util.Timeout import akka.pattern.{ ask, AskTimeoutException } @@ -15,6 +16,8 @@ class ActorTimeoutSpec extends AkkaSpec { val testTimeout = 200.millis.dilated val leeway = 500.millis.dilated + system.eventStream.publish(Mute(EventFilter.warning(pattern = ".*unhandled message from.*hallo"))) + "An Actor-based Future" must { "use implicitly supplied timeout" in {