Skip to content

Commit

Permalink
Fix the expected version in PublishTest
Browse files Browse the repository at this point in the history
We had to change the release tags for double-bump repro in 32a5808
  • Loading branch information
dagguh committed Jun 14, 2024
1 parent 1ee97f4 commit 78e7b2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class PublishTest {
val publishTask = publishResult.task(":publishToMavenLocal")
assertThat(publishTask?.outcome)
.isEqualTo(TaskOutcome.SUCCESS)
val pomXml = findPublishedPom("$version-SNAPSHOT")
val pomXml = findPublishedPom("0.3.1-SNAPSHOT")
assertThat(pomXml).exists()
val scm = extractScm(pomXml)
assertThat(scm.getChildValue("url"))
Expand Down

0 comments on commit 78e7b2c

Please sign in to comment.