Skip to content

Commit

Permalink
expect lowercase cryostatVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Nov 7, 2023
1 parent 8f19c83 commit 19cdf55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/itest/HealthIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void shouldIncludeApplicationVersion() {
response.getString("cryostatVersion"), Matchers.not(Matchers.equalTo("unknown")));
MatcherAssert.assertThat(
response.getString("cryostatVersion"),
Matchers.matchesRegex("^v[\\d]\\.[\\d]\\.[\\d](?:-SNAPSHOT)?"));
Matchers.matchesRegex("^v[\\d]\\.[\\d]\\.[\\d](?:-snapshot)?"));
}

@Disabled("TODO")
Expand Down

0 comments on commit 19cdf55

Please sign in to comment.