+str #17254: Accept graphs instead of Flow/Source/Sink etc.

This commit is contained in:
Endre Sándor Varga 2015-04-24 12:14:04 +02:00
parent 1a5d114290
commit d73f78dcbf
9 changed files with 100 additions and 90 deletions

View file

@ -141,7 +141,7 @@ class FlowMapAsyncUnorderedSpec extends AkkaSpec {
.withAttributes(supervisionStrategy(resumingDecider))
.runWith(TestSink.probe[Int])
.request(10)
.expectNext(1, 2, 4, 5)
.expectNextUnordered(1, 2, 4, 5)
.expectComplete()
}