Skip to content

Commit

Permalink
fix(): fix expected RC version name
Browse files Browse the repository at this point in the history
  • Loading branch information
KarimGl committed Feb 27, 2024
1 parent 6247f3f commit 73c0dda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void setUp() throws Exception {
@Test
public void should_return_chutney_version() throws Exception {
this.mockMvc.perform(get("/api/v1/info/build/version")).andDo(print()).andExpect(status().isOk())
.andExpect(content().string(matchesRegex("\\d\\.\\d\\.\\d+(-SNAPSHOT|-rc\\.d+)?")));
.andExpect(content().string(matchesRegex("\\d\\.\\d\\.\\d+(-SNAPSHOT|-RC\\.d+)?")));
}

@Test
Expand Down

0 comments on commit 73c0dda

Please sign in to comment.