From 06bdd2fbae2849134084f24d17feb560bb4090a1 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 6 Aug 2022 17:06:12 +0000 Subject: [PATCH 1/8] Applied Scalafix rule(s) https://raw.githubusercontent.com/scalatest/autofix/e4de53fa40fac423bd64d165ff36bde38ce52388/3.1.x/rules/src/main/scala/org/scalatest/autofix/v3_1_x/RewriteDeprecatedNames.scala See https://github.com/scalatest/autofix/blob/master/3.1.x/README.md for details --- src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala b/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala index fdfa9f35..4e8bacf3 100644 --- a/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala +++ b/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala @@ -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") From f292eeda50653035f5f2bac1bc9138b9c65d5f33 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 6 Aug 2022 17:06:12 +0000 Subject: [PATCH 2/8] Update scalatest to 3.2.13 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 592bfd4e..2d2645a9 100644 --- a/build.sbt +++ b/build.sbt @@ -23,7 +23,7 @@ lazy val treehub = (project in file(".")) .settings(Seq(libraryDependencies ++= { val akkaV = "2.6.19" val akkaHttpV = "10.2.9" - val scalaTestV = "3.0.9" + val scalaTestV = "3.2.13" val libatsV = "2.0.10" Seq( From 2d8207090e9a8aeccb482e6d9190dfe978304d41 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 8 Aug 2022 17:56:18 +0000 Subject: [PATCH 3/8] Revert commit(s) f292eed, 06bdd2f --- build.sbt | 2 +- src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 2d2645a9..592bfd4e 100644 --- a/build.sbt +++ b/build.sbt @@ -23,7 +23,7 @@ lazy val treehub = (project in file(".")) .settings(Seq(libraryDependencies ++= { val akkaV = "2.6.19" val akkaHttpV = "10.2.9" - val scalaTestV = "3.2.13" + val scalaTestV = "3.0.9" val libatsV = "2.0.10" Seq( diff --git a/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala b/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala index 4e8bacf3..fdfa9f35 100644 --- a/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala +++ b/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala @@ -4,10 +4,9 @@ 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.AnyFunSuite -import org.scalatest.matchers.should.Matchers +import org.scalatest.{FunSuite, Matchers} -abstract class TreeHubSpec extends AnyFunSuite with Matchers with ScalaFutures with Settings { +abstract class TreeHubSpec extends FunSuite with Matchers with ScalaFutures with Settings { val defaultNs = Namespace("default") val testDbConfig: Config = ConfigFactory.load().getConfig("ats.treehub.database") From 4b8da35400fb3a8afb0c769e0819a967896b6da5 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 8 Aug 2022 17:58:22 +0000 Subject: [PATCH 4/8] Applied Scalafix rule(s) https://raw.githubusercontent.com/scalatest/autofix/e4de53fa40fac423bd64d165ff36bde38ce52388/3.1.x/rules/src/main/scala/org/scalatest/autofix/v3_1_x/RewriteDeprecatedNames.scala See https://github.com/scalatest/autofix/blob/master/3.1.x/README.md for details --- src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala b/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala index fdfa9f35..4e8bacf3 100644 --- a/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala +++ b/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala @@ -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") From 3c7f7b50679eb6706e736b0e8f29a2cd6af6b9a5 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 8 Aug 2022 17:58:22 +0000 Subject: [PATCH 5/8] Update scalatest to 3.2.13 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index c3019ccf..aff174a3 100644 --- a/build.sbt +++ b/build.sbt @@ -23,7 +23,7 @@ lazy val treehub = (project in file(".")) .settings(Seq(libraryDependencies ++= { val akkaV = "2.6.19" val akkaHttpV = "10.2.9" - val scalaTestV = "3.0.9" + val scalaTestV = "3.2.13" val libatsV = "2.0.11" Seq( From 785dc3174ca33531d12846995981609be370d3ad Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 11 Sep 2022 19:10:26 +0000 Subject: [PATCH 6/8] Revert commit(s) 3c7f7b5, 4b8da35 --- build.sbt | 2 +- src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index aff174a3..c3019ccf 100644 --- a/build.sbt +++ b/build.sbt @@ -23,7 +23,7 @@ lazy val treehub = (project in file(".")) .settings(Seq(libraryDependencies ++= { val akkaV = "2.6.19" val akkaHttpV = "10.2.9" - val scalaTestV = "3.2.13" + val scalaTestV = "3.0.9" val libatsV = "2.0.11" Seq( diff --git a/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala b/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala index 4e8bacf3..fdfa9f35 100644 --- a/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala +++ b/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala @@ -4,10 +4,9 @@ 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.AnyFunSuite -import org.scalatest.matchers.should.Matchers +import org.scalatest.{FunSuite, Matchers} -abstract class TreeHubSpec extends AnyFunSuite with Matchers with ScalaFutures with Settings { +abstract class TreeHubSpec extends FunSuite with Matchers with ScalaFutures with Settings { val defaultNs = Namespace("default") val testDbConfig: Config = ConfigFactory.load().getConfig("ats.treehub.database") From d0c105607b9bce1bb542447bbb1be59cec748b6c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 11 Sep 2022 19:13:38 +0000 Subject: [PATCH 7/8] Applied Scalafix rule(s) https://raw.githubusercontent.com/scalatest/autofix/e4de53fa40fac423bd64d165ff36bde38ce52388/3.1.x/rules/src/main/scala/org/scalatest/autofix/v3_1_x/RewriteDeprecatedNames.scala See https://github.com/scalatest/autofix/blob/master/3.1.x/README.md for details --- src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala b/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala index fdfa9f35..4e8bacf3 100644 --- a/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala +++ b/src/test/scala/com/advancedtelematic/util/TreeHubSpec.scala @@ -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") From 2d5359bd6d14716c7f8cf8e1e61bdc61081afc39 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 11 Sep 2022 19:13:38 +0000 Subject: [PATCH 8/8] Update scalatest to 3.2.13 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 2dd9bb49..b8d6b93d 100644 --- a/build.sbt +++ b/build.sbt @@ -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(