Skip to content

Commit

Permalink
8636 - checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
aroman-arvo committed May 17, 2023
1 parent 567e989 commit 9784c6f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -273,14 +273,14 @@ public void testCreateAndReturnNotAuthenticated()

// Create it and see if it was created correctly.
ObjectMapper mapper = new ObjectMapper();
try{
try {
getClient().perform(post(URI_ROOT)
.content(mapper.writeValueAsBytes(rir))
.contentType(contentType))
.andExpect(status().isCreated())
// verify the body is empty
.andExpect(jsonPath("$").doesNotExist());
}finally{
} finally {
Iterator<RequestItem> itemRequests = requestItemService.findByItem(context, item);
String token = null;
for (Iterator<RequestItem> it = itemRequests; it.hasNext();) {
Expand Down

0 comments on commit 9784c6f

Please sign in to comment.