Skip to content

Commit

Permalink
Merge pull request #565 from jonesbusy/bugfix/fix-test-with-hardcoded…
Browse files Browse the repository at this point in the history
…-bom-version

Fix one test with hardcoded bom version
  • Loading branch information
jonesbusy authored Jan 3, 2025
2 parents 67b3846 + d07a834 commit 5fd494b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
openrewrite.maven.plugin.version = ${openrewrite.maven.plugin.version}
jenkins.parent.version = 5.4
bom.version = 3850.vb_c5319efa_e29
bom.version = 3875.v1df09947cde6
remediation.jenkins.plugin.parent.version = 2.37
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ void upgradeToRecommendCoreVersionTest() {
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-${jenkins.baseline}.x</artifactId>
<version>3850.vb_c5319efa_e29</version>
<version>%s</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -542,7 +542,8 @@ void upgradeToRecommendCoreVersionTest() {
</pluginRepository>
</pluginRepositories>
</project>
"""));
"""
.formatted(Settings.getBomVersion())));
}

@Test
Expand Down

0 comments on commit 5fd494b

Please sign in to comment.