Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSebastian committed Oct 14, 2024
1 parent d294ed0 commit 8e335a5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ void should_returnCurrentAsyncProgress_when_requested() throws Exception {
val request = MockMvcRequestBuilders.get("/businessActions/asyncProgress");
val mockMvcPerform = mockMvc.perform(request).andExpect(status().isOk()).andReturn();

val responseBodyAsAsycProgressDTO = objectMapper.readValue(mockMvcPerform.getResponse().getContentAsString(), AsyncProgressDTO.class);
Assertions.assertThat(responseBodyAsAsycProgressDTO).isEqualTo(expectedAsyncProgressDTO);
val responseBodyAsAsyncProgressDTO = objectMapper.readValue(mockMvcPerform.getResponse().getContentAsString(), AsyncProgressDTO.class);
Assertions.assertThat(responseBodyAsAsyncProgressDTO).isEqualTo(expectedAsyncProgressDTO);
}

private AsyncProgressDTO setupAsyncProgressStateAndReturnExpectedDTO() {
Expand Down

0 comments on commit 8e335a5

Please sign in to comment.