Skip to content

Commit 7cdcb87

Browse files
committed
Fix expected version for "migrateDependency: sbt-dynver with migration"
1 parent 2e831dc commit 7cdcb87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/core/src/test/scala/org/scalasteward/core/update/artifact/ArtifactMigrationsFinderTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ class ArtifactMigrationsFinderTest extends FunSuite {
151151
test("migrateDependency: sbt-dynver with migration") {
152152
val dependency = ("com.dwijnand".g % "sbt-dynver".a % "4.1.1")
153153
.copy(sbtVersion = Some(SbtVersion("1.0")), scalaVersion = Some(ScalaVersion("2.12")))
154-
val expected = (dependency %> Nel.of("5.0.1")).single
154+
val expected = (dependency %> Nel.of("5.1.0")).single
155155
.copy(newerGroupId = Some("com.github.sbt".g), newerArtifactId = Some("sbt-dynver"))
156156
val obtained = updateAlg
157157
.findUpdates(

0 commit comments

Comments
 (0)