Skip to content

Commit ed9641e

Browse files
authored
update various test dependencies (#1568)
1 parent f603346 commit ed9641e

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

automation/project/Dependencies.scala

+2-3
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,9 @@ object Dependencies {
4141
"com.typesafe.akka" %% "akka-http" % akkaHttpV,
4242
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
4343
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
44-
"org.scalatest" %% "scalatest" % "3.2.3" % Test,
4544
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
46-
"org.scalatest" %% "scalatest" % "3.2.12" % Test,
47-
"org.scalatestplus" %% "scalacheck-1-15" % "3.2.11.0" % Test,
45+
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
46+
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % Test,
4847
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.4",
4948
workbenchServiceTest,
5049
workbenchGoogle,

project/Dependencies.scala

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ object Dependencies {
55
val akkaHttpV = "10.2.9"
66
val jacksonV = "2.17.0"
77
val scalaLoggingV = "3.9.2"
8-
val scalaTestV = "3.2.12"
9-
val scalaCheckV = "1.14.3"
8+
val scalaTestV = "3.2.19"
9+
val scalaCheckV = "1.18.1"
1010
val scalikejdbcVersion = "3.4.2"
1111
val postgresDriverVersion = "42.7.2"
1212
val sentryVersion = "6.15.0"
@@ -77,8 +77,8 @@ object Dependencies {
7777
val monocleMacro: ModuleID = "com.github.julien-truffaut" %% "monocle-macro" % monocleVersion
7878

7979
val scalaTest: ModuleID = "org.scalatest" %% "scalatest" % scalaTestV % "test"
80-
val scalaTestScalaCheck = "org.scalatestplus" %% "scalacheck-1-15" % s"${scalaTestV}.0-RC2" % Test
81-
val mockitoScalaTest = "org.mockito" %% "mockito-scala-scalatest" % "1.17.12" % Test
80+
val scalaTestScalaCheck = "org.scalatestplus" %% "scalacheck-1-18" % s"${scalaTestV}.0" % Test
81+
val mockitoScalaTest = "org.mockito" %% "mockito-scala-scalatest" % "1.17.37" % Test
8282

8383
// All of workbench-libs pull in Akka; exclude it since we provide our own Akka dependency.
8484
// workbench-google pulls in workbench-{util, model, metrics}; exclude them so we can control the library versions individually.
@@ -103,7 +103,7 @@ object Dependencies {
103103
val workbenchGoogle2Tests: ModuleID =
104104
"org.broadinstitute.dsde.workbench" %% "workbench-google2" % workbenchGoogle2V % "test" classifier "tests" excludeAll (excludeWorkbenchUtil, excludeWorkbenchModel)
105105
val googleStorageLocal: ModuleID =
106-
"com.google.cloud" % "google-cloud-nio" % "0.127.7" % "test" // needed for mocking google cloud storage. Should use same version as wb-libs
106+
"com.google.cloud" % "google-cloud-nio" % "0.127.25" % "test" // needed for mocking google cloud storage. Should use same version as wb-libs
107107

108108
val liquibaseCore: ModuleID = "org.liquibase" % "liquibase-core" % "4.2.2"
109109

0 commit comments

Comments
 (0)