Spray.io: Can't compile test spec

后端 未结 1 1628
你的背包
你的背包 2020-12-31 12:01

I have the following service:

trait PingService extends MyHttpService {

val pingRoutes =
    path(\"ping\") {
      get {
        complete(\"message\" ->         


        
1条回答
  •  隐瞒了意图╮
    2020-12-31 12:28

    The ScalatestRouteTest already provides an implicit ActorSystem. Remove the implicit modifier from your actorRefFactory method and the test should get executed.

    0 讨论(0)
提交回复
热议问题