Skip to content

Commit

Permalink
Merge pull request #2832 from krmahadevan/fix_osgitestfailure
Browse files Browse the repository at this point in the history
Changing assertion message of the osgitest
  • Loading branch information
juherr committed Nov 14, 2022
2 parents acfac7a + abde9d7 commit 9c15d5e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -34,6 +34,6 @@ public void versionShouldStartWithDigit() throws Exception {
assertThat(version)
.matches(
(v) -> String.valueOf(v).length() > 0 && Character.isDigit(String.valueOf(v).charAt(0)),
"Version.getVersionString() should start with a digit");
"Version.getVersionString() should start with a digit but was " + version);
}
}

0 comments on commit 9c15d5e

Please sign in to comment.