Skip to content

Commit 5c9e6bb

Browse files
committed
1 parent 9cbee41 commit 5c9e6bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compiler/test/dotty/tools/dotc/SettingsTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class SettingsTests {
106106
false
107107

108108
val default = Settings.defaultState
109-
assertThrows[IllegalArgumentException](checkMessage("found: not an option of type java.lang.String, required: Boolean")) {
109+
dotty.tools.assertThrows[IllegalArgumentException](checkMessage("found: not an option of type java.lang.String, required: Boolean")) {
110110
Settings.option.updateIn(default, "not an option")
111111
}
112112

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ object Build {
251251
// Prevent sbt from rewriting our dependencies
252252
scalaModuleInfo ~= (_.map(_.withOverrideScalaVersion(false))),
253253

254-
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test,
254+
libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.3" % Test,
255255

256256
// If someone puts a source file at the root (e.g., for manual testing),
257257
// don't pick it up as part of any project.
@@ -1327,7 +1327,7 @@ object Build {
13271327
"org.jsoup" % "jsoup" % "1.14.3", // Needed to process .html files for static site
13281328
Dependencies.`jackson-dataformat-yaml`,
13291329

1330-
"com.novocode" % "junit-interface" % "0.11" % "test",
1330+
"com.github.sbt" % "junit-interface" % "0.13.3" % Test,
13311331
),
13321332
Compile / mainClass := Some("dotty.tools.scaladoc.Main"),
13331333
Compile / buildInfoKeys := Seq[BuildInfoKey](version),

0 commit comments

Comments
 (0)