Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed Dec 15, 2024
1 parent 70a85e1 commit baf330b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scalalib/test/src/mill/scalalib/BomTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ object BomTests extends TestSuite {
val res = eval(modules.bomScope.provided.fail.resolvedIvyDeps)
assert(
res.left.exists(_.toString.contains(
"not found: https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/_/protobuf-java-util-_.pom"
"not found: https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util//protobuf-java-util-.pom"
))
)
}
Expand All @@ -853,7 +853,7 @@ object BomTests extends TestSuite {
val res = eval(modules.bomScope.testScopeFail.compileClasspath)
assert(
res.left.exists(_.toString.contains(
"not found: https://repo1.maven.org/maven2/org/scalatest/scalatest_2.13/_/scalatest_2.13-_.pom"
"not found: https://repo1.maven.org/maven2/org/scalatest/scalatest_2.13//scalatest_2.13-.pom"
))
)
}
Expand Down Expand Up @@ -902,7 +902,7 @@ object BomTests extends TestSuite {
val res = eval(modules.depMgmtScope.provided.fail.resolvedIvyDeps)
assert(
res.left.exists(_.toString.contains(
"not found: https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util/_/protobuf-java-util-_.pom"
"not found: https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java-util//protobuf-java-util-.pom"
))
)
}
Expand Down

0 comments on commit baf330b

Please sign in to comment.