re-enable akka-camel and akka-camel-typed and fix compile and test errors

This commit is contained in:
Martin Krasser 2011-06-28 16:53:11 +02:00
parent 86cfc8672e
commit d25b8ce92c
8 changed files with 63 additions and 66 deletions

View file

@ -170,10 +170,7 @@ class ConsumerScalaTest extends WordSpec with BeforeAndAfterAll with MustMatcher
"A supervised consumer" must {
"be able to reply during receive" in {
val consumer = Actor.actorOf(new SupervisedConsumer("reply-channel-test-1")).start
(consumer !! "succeed") match {
case Some(r) r must equal("ok")
case None fail("reply expected")
}
(consumer ? "succeed").get must equal("ok")
}
"be able to reply on failure during preRestart" in {