From c1928da94448b732ffa0c50e0a782d82f6c9486b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Endre=20S=C3=A1ndor=20Varga?= Date: Tue, 27 Aug 2013 16:41:51 +0200 Subject: [PATCH] =tes #3563: Mark internal Testkit messages as NoSerializationVerificationNeeded --- akka-testkit/src/main/scala/akka/testkit/TestKit.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/akka-testkit/src/main/scala/akka/testkit/TestKit.scala b/akka-testkit/src/main/scala/akka/testkit/TestKit.scala index 514f1e437d..818361790a 100644 --- a/akka-testkit/src/main/scala/akka/testkit/TestKit.scala +++ b/akka-testkit/src/main/scala/akka/testkit/TestKit.scala @@ -37,10 +37,10 @@ object TestActor { def run(sender: ActorRef, msg: Any): AutoPilot = sys.error("must not call") } - case class SetIgnore(i: Ignore) - case class Watch(ref: ActorRef) - case class UnWatch(ref: ActorRef) - case class SetAutoPilot(ap: AutoPilot) + case class SetIgnore(i: Ignore) extends NoSerializationVerificationNeeded + case class Watch(ref: ActorRef) extends NoSerializationVerificationNeeded + case class UnWatch(ref: ActorRef) extends NoSerializationVerificationNeeded + case class SetAutoPilot(ap: AutoPilot) extends NoSerializationVerificationNeeded trait Message { def msg: AnyRef