Skip to content
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ lazy val treehub = (project in file("."))
.settings(Seq(libraryDependencies ++= {
val akkaV = "2.6.20"
val akkaHttpV = "10.2.10"
val scalaTestV = "3.0.9"
val scalaTestV = "3.2.13"
val libatsV = "2.0.11"

Seq(
Expand Down
5 changes: 3 additions & 2 deletions src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ import com.advancedtelematic.libats.data.DataType.Namespace
import com.advancedtelematic.treehub.Settings
import com.typesafe.config.{Config, ConfigFactory}
import org.scalatest.concurrent.ScalaFutures
import org.scalatest.{FunSuite, Matchers}
import org.scalatest.funsuite.AnyFunSuite
import org.scalatest.matchers.should.Matchers

abstract class TreeHubSpec extends FunSuite with Matchers with ScalaFutures with Settings {
abstract class TreeHubSpec extends AnyFunSuite with Matchers with ScalaFutures with Settings {
val defaultNs = Namespace("default")

val testDbConfig: Config = ConfigFactory.load().getConfig("ats.treehub.database")
Expand Down