Skip to content

Commit 102a8e4

Browse files
committed
Fix the test
1 parent c237dee commit 102a8e4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

modules/core/src/test/scala/org/scalasteward/core/edit/RewriteTest.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,10 @@ class RewriteTest extends FunSuite {
841841
}
842842

843843
test("issue-2877: sbt using same version in a val and a literal".fail) {
844-
val update = ("org.scalatest".g % "scalatest".a % "3.2.13" %> "3.2.14").single
844+
val update = ("org.scalatest".g % Nel.of(
845+
"scalatest".a,
846+
"scalactic".a
847+
) % "3.2.13" %> "3.2.14").group
845848
val original = Map(
846849
"build.sbt" ->
847850
"""

0 commit comments

Comments
 (0)