Removing ActorRef.isRunning - replaced in full by isShutdown, if it returns true the actor is forever dead, if it returns false, it might be (race)

This commit is contained in:
Viktor Klang 2011-10-03 19:43:45 +02:00
parent a1593c0419
commit 0f049d67e6
12 changed files with 22 additions and 54 deletions

View file

@ -162,7 +162,6 @@ class TestActorRefSpec extends WordSpec with MustMatchers with BeforeAndAfterEac
intercept[ActorKilledException] {
(a ? PoisonPill).get
}
a must not be ('running)
a must be('shutdown)
assertThread
}