* remove assert on unhandled message, not important to what the test is verifying * I think message 6 might not have arrived yet, and therefore not directed to unhandled
This commit is contained in:
parent
3eb8d57649
commit
f733639988
1 changed files with 0 additions and 4 deletions
|
|
@ -622,8 +622,6 @@ class EventSourcedBehaviorStashSpec
|
|||
"stop from PoisonPill after unstashing completed" in {
|
||||
val c = spawn(counter(nextPid()))
|
||||
val ackProbe = TestProbe[Ack]()
|
||||
val unhandledProbe = createTestProbe[UnhandledMessage]()
|
||||
system.eventStream ! EventStream.Subscribe(unhandledProbe.ref)
|
||||
|
||||
c ! Increment("1", ackProbe.ref)
|
||||
ackProbe.expectMessage(Ack("1"))
|
||||
|
|
@ -648,8 +646,6 @@ class EventSourcedBehaviorStashSpec
|
|||
|
||||
ackProbe.expectTerminated(c)
|
||||
|
||||
unhandledProbe.receiveMessage()
|
||||
|
||||
// 6 shouldn't make it, already stopped
|
||||
ackProbe.expectNoMessage(100.millis)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue