Updated JMeter tests to reflect UUID controller change

This commit is contained in:
Liam Garvie 2021-02-20 11:19:12 +00:00
parent 745f15f7f2
commit 04475d1555
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ class JmeterIntegrationTest {
}
@Test
void whenCallingTestController_thenWeShouldRecieveRandomizedResponse() throws Exception {
MockHttpServletResponse response = mvc.perform(get("/api/test"))
void whenCallingUUIDController_thenWeShouldRecieveRandomizedResponse() throws Exception {
MockHttpServletResponse response = mvc.perform(get("/api/uuid"))
.andDo(print())
.andExpect(status().isOk())
.andReturn()