Skip to content
Snippets Groups Projects
Commit e7964de3 authored by Alžbeta Hajná's avatar Alžbeta Hajná
Browse files

fix(test): added data of body to request

parent 1a93fdf8
No related branches found
No related tags found
2 merge requests!54Merge develop into main,!39feat: send request to visualization if getDriver is called
Pipeline #
......@@ -41,7 +41,7 @@ class IntegrationTests {
.andReturn().getResponse().getContentAsString();
log.info("response: {}", response);
String expectedResponse = "{\"message\":\"--VISUALIZATION--\"}";
String expectedResponse = "{\"message\":\"--VISUALIZATION--Hello\"}";
assertEquals(expectedResponse, response);
}
......
......@@ -25,6 +25,6 @@ class VisualizationControllerTest {
ResponseEntity<VisualizationSchemaDto> responseEntity = visualizationController.getVisualization(new VisualizationSchemaCreateDto().data("test"));
assertEquals(HttpStatus.OK, responseEntity.getStatusCode());
assertNotNull(responseEntity.getBody());
assertEquals("--VISUALIZATION--", responseEntity.getBody().getMessage());
assertEquals("--VISUALIZATION--test", responseEntity.getBody().getMessage());
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment