Skip to content

Commit

Permalink
Changing assertion message of the osgitest
Browse files Browse the repository at this point in the history
  • Loading branch information
krmahadevan committed Nov 14, 2022
1 parent acfac7a commit abde9d7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
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 abde9d7

Please sign in to comment.