Skip to content
Open
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.19"
val libatsV = "2.1.2"

Seq(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ package com.advancedtelematic.data
import com.advancedtelematic.data.DataType.{StaticDeltaIndex, SuperBlockHash}
import com.advancedtelematic.libats.messaging_datatype.DataType.Commit
import eu.timepit.refined.api.RefType
import org.scalatest.{FunSuite, Matchers}
import org.scalatest.funsuite.AnyFunSuite
import org.scalatest.matchers.should.Matchers

class GVariantEncoderSpec extends FunSuite with Matchers {
class GVariantEncoderSpec extends AnyFunSuite with Matchers {

def Commit(str: String): Commit = RefType.applyRef[Commit](str).toOption.get

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