closes #281: Made all subprojects test after breaking changes introduced by removing the type parameter from ActorRef.!!.

This commit is contained in:
Heiko Seeberger 2010-06-21 13:08:10 +02:00
parent 4bfde61e4e
commit f1d4c9af0b
11 changed files with 37 additions and 37 deletions

View file

@ -45,7 +45,7 @@ class RemoteConsumerTest extends FeatureSpec with BeforeAndAfterAll with GivenWh
val consumer = actorOf[RemoteConsumer].start
when("remote consumer publication is triggered")
val latch = service.consumerPublisher.!![CountDownLatch](SetExpectedMessageCount(1)).get
val latch = (service.consumerPublisher !! SetExpectedMessageCount(1)).as[CountDownLatch].get
consumer !! "init"
assert(latch.await(5000, TimeUnit.MILLISECONDS))