remove akka.stream.testkit.AkkaSpec, fixes #19879
This commit is contained in:
parent
06b4d54960
commit
45e97e8467
183 changed files with 265 additions and 346 deletions
|
|
@ -4,7 +4,7 @@
|
|||
package akka.stream
|
||||
|
||||
import akka.stream.scaladsl._
|
||||
import akka.stream.testkit.AkkaSpec
|
||||
import akka.testkit.AkkaSpec
|
||||
import org.scalactic.ConversionCheckedTripleEquals
|
||||
import akka.stream.Attributes._
|
||||
import akka.stream.Fusing.FusedGraph
|
||||
|
|
@ -15,11 +15,10 @@ import scala.concurrent.duration._
|
|||
import akka.stream.impl.fusing.GraphInterpreter
|
||||
import akka.event.BusLogging
|
||||
|
||||
class FusingSpec extends AkkaSpec with ScalaFutures with ConversionCheckedTripleEquals {
|
||||
class FusingSpec extends AkkaSpec {
|
||||
|
||||
final val Debug = false
|
||||
implicit val materializer = ActorMaterializer()
|
||||
implicit val patience = PatienceConfig(1.second)
|
||||
|
||||
def graph(async: Boolean) =
|
||||
Source.unfold(1)(x ⇒ Some(x -> x)).filter(_ % 2 == 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue