Fix build

This commit is contained in:
alandavis
2022-08-03 12:56:44 +01:00
parent 9e2952d4fd
commit 11a0f837a1

View File

@@ -161,6 +161,7 @@ public class TransformControllerAllInOneTest
@Test
public void testReadyEndpointReturnsSuccessful() throws Exception
{
transformController.probeTransform.resetForTesting();
mockMvc.perform(MockMvcRequestBuilders.get(ENDPOINT_READY))
.andExpect(status().isOk())
.andExpect(content().string(containsString("Success - ")));
@@ -169,6 +170,7 @@ public class TransformControllerAllInOneTest
@Test
public void testLiveEndpointReturnsSuccessful() throws Exception
{
transformController.probeTransform.resetForTesting();
mockMvc.perform(MockMvcRequestBuilders.get(ENDPOINT_LIVE))
.andExpect(status().isOk())
.andExpect(content().string(containsString("Success - ")));