also fix FlowInterleaveSpec

Also-by: Johan Andrén <johan@markatta.com>
Also-by: Roland Kuhn <rk@rkuhn.info>
Also-by: Martynas Mickevičius <mmartynas@gmail.com>
This commit is contained in:
Endre Sándor Varga 2016-01-20 10:00:37 +02:00 committed by Martynas Mickevičius
parent ef77b56e66
commit 60497f6561
195 changed files with 1110 additions and 857 deletions

View file

@ -3,6 +3,7 @@
*/
package akka.stream.impl.fusing
import akka.NotUsed
import akka.stream.{ OverflowStrategy, Attributes }
import akka.stream.stage.AbstractStage.PushPullGraphStage
import akka.stream.testkit.AkkaSpec
@ -340,7 +341,7 @@ class GraphInterpreterSpec extends AkkaSpec with GraphInterpreterSpecKit {
"implement buffer" in new TestSetup {
val source = new UpstreamProbe[String]("source")
val sink = new DownstreamProbe[String]("sink")
val buffer = new PushPullGraphStage[String, String, Unit](
val buffer = new PushPullGraphStage[String, String, NotUsed](
(_) new Buffer[String](2, OverflowStrategy.backpressure),
Attributes.none)