diff --git a/chutney/server/src/test/java/com/chutneytesting/admin/api/InfoControllerTest.java b/chutney/server/src/test/java/com/chutneytesting/admin/api/InfoControllerTest.java index e0cbec026..32a325c3c 100644 --- a/chutney/server/src/test/java/com/chutneytesting/admin/api/InfoControllerTest.java +++ b/chutney/server/src/test/java/com/chutneytesting/admin/api/InfoControllerTest.java @@ -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