Skip to content

Commit

Permalink
Sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Jun 6, 2024
1 parent 1b6a181 commit 9299104
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ void testCreateSchool_GivenInvalidPayload_ShouldReturnStatusBadRequest() throws
.contentType(MediaType.APPLICATION_JSON)
.content(getJsonString(sagaData))
.accept(MediaType.APPLICATION_JSON)
.with(jwt().jwt((jwt) -> jwt.claim("scope", "CREATE_SCHOOL_SAGA"))))
.with(jwt().jwt(jwt -> jwt.claim("scope", "CREATE_SCHOOL_SAGA"))))
.andDo(print()).andExpect(status().isBadRequest());
}

Expand Down

0 comments on commit 9299104

Please sign in to comment.