Skip to content

Commit

Permalink
[Kernel] Upgrade JUnit versions for kernel modules
Browse files Browse the repository at this point in the history
Upgrade JUnit so we can use `assertThrows` in the kernel modules

GitOrigin-RevId: ea9ad1ca13c2e4af76a594964a4a9bdf13794bc0
  • Loading branch information
allisonport-db authored and vkorukanti committed Oct 2, 2023
1 parent 01fee68 commit 32918db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ lazy val kernelApi = (project in file("kernel/kernel-api"))

"com.fasterxml.jackson.core" % "jackson-databind" % "2.13.5" % "test",
"org.scalatest" %% "scalatest" % scalaTestVersion % "test",
"junit" % "junit" % "4.11" % "test",
"junit" % "junit" % "4.13" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
),

Expand Down Expand Up @@ -255,7 +255,7 @@ lazy val kernelDefaults = (project in file("kernel/kernel-defaults"))
"org.apache.parquet" % "parquet-hadoop" % "1.12.3",

"org.scalatest" %% "scalatest" % scalaTestVersion % "test",
"junit" % "junit" % "4.11" % "test",
"junit" % "junit" % "4.13" % "test",
"commons-io" % "commons-io" % "2.8.0" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
),
Expand Down

0 comments on commit 32918db

Please sign in to comment.