From a4a2d0500a90432e0024747720585b064b78ace4 Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Thu, 23 May 2013 08:48:12 +0200 Subject: [PATCH] Increase timeout in RemotingSpec, see #3372 --- akka-remote/src/test/scala/akka/remote/RemotingSpec.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-remote/src/test/scala/akka/remote/RemotingSpec.scala b/akka-remote/src/test/scala/akka/remote/RemotingSpec.scala index 6912fe4e94..9592a9509f 100644 --- a/akka-remote/src/test/scala/akka/remote/RemotingSpec.scala +++ b/akka-remote/src/test/scala/akka/remote/RemotingSpec.scala @@ -418,7 +418,7 @@ class RemotingSpec extends AkkaSpec(RemotingSpec.cfg) with ImplicitSender with D expectMsg(57) } - "not fail ask across node boundaries" in { + "not fail ask across node boundaries" in within(5.seconds) { import system.dispatcher val f = for (_ ← 1 to 1000) yield here ? "ping" mapTo manifest[(String, ActorRef)] Await.result(Future.sequence(f), remaining).map(_._1).toSet must be(Set("pong"))