File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/test/scala/com/example/app Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ scalaVersion := "3.3.1"
66val ScalatraVersion = " 3.0.0"
77
88libraryDependencies ++= Seq (
9- " org.apache.pekko" %% " pekko-actor" % " 1.0.0" cross( CrossVersion .for3Use2_13) ,
10- " org.apache.pekko" %% " pekko-http" % " 1.0.0" cross( CrossVersion .for3Use2_13) ,
9+ " org.apache.pekko" %% " pekko-actor" % " 1.0.0" ,
10+ " org.apache.pekko" %% " pekko-http" % " 1.0.0" ,
1111 " com.softwaremill.sttp.client3" %% " core" % " 3.9.0" ,
1212 " org.scalatra" %% " scalatra-jakarta" % ScalatraVersion ,
1313 " org.scalatra" %% " scalatra-specs2-jakarta" % ScalatraVersion % Test ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class MyActorAppSpec extends ScalatraSpec { def is = s2"""
1212"""
1313
1414 val system = ActorSystem ()
15- val myActor = system.actorOf(Props [MyActor ])
15+ val myActor = system.actorOf(Props [MyActor ]() )
1616
1717 addServlet(new MyActorApp (system, myActor), " /*" )
1818
You can’t perform that action at this time.
0 commit comments