Skip to content

Commit 388a48d

Browse files
committed
Remove commented-out test code
1 parent fe1e066 commit 388a48d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/src/test/java/com/auth0/spring/security/api/JwtAccessDeniedHandlerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public void shouldReturnForbidden() throws Exception {
1616
JwtAccessDeniedHandler handler = new JwtAccessDeniedHandler();
1717
HttpServletRequest request = mock(HttpServletRequest.class);
1818
HttpServletResponse response = mock(HttpServletResponse.class);
19-
AccessDeniedException exception = new AccessDeniedException("Forbidden");// mock(AccessDeniedException.class);
19+
AccessDeniedException exception = new AccessDeniedException("Forbidden");
2020

2121
handler.handle(request, response, exception);
2222
verify(response).addHeader(

0 commit comments

Comments
 (0)