Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.16"
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