Merge pull request #19546 from akka/wip-19544-FlowExpandSpec-RK

#19544 fix FlowExpandSpec
This commit is contained in:
Roland Kuhn 2016-01-21 09:17:22 +01:00
commit 63d366f4c1

View file

@ -135,9 +135,9 @@ class FlowExpandSpec extends AkkaSpec {
source
.sendNext(1)
sink
.request(5)
.request(4)
.expectNext(1 -> 0, 1 -> 1, 1 -> 2)
.expectNoMsg(300.millis)
.expectNoMsg(100.millis)
source
.sendNext(2)
.sendComplete()