Skip to content

Commit

Permalink
Fixed the broken test for ImpersonationController
Browse files Browse the repository at this point in the history
  • Loading branch information
mkimberlin committed Aug 15, 2024
1 parent 3facb69 commit df440d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void testGetEndNoOJWT() {
assertThrows(HttpClientResponseException.class,
() -> client.toBlocking().retrieve(request));
assertNotNull(response);
assertEquals(HttpStatus.UNAUTHORIZED, response.getStatus());
assertEquals(HttpStatus.BAD_REQUEST, response.getStatus());
}

@Test
Expand Down

0 comments on commit df440d0

Please sign in to comment.