mirror of
https://github.com/google/nomulus
synced 2026-01-09 15:43:52 +00:00
Fix Optinal.absent() to Optional.<AuthResult>absent()
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=162223775
This commit is contained in:
@@ -420,7 +420,7 @@ public final class RequestHandlerTest {
|
||||
when(req.getMethod()).thenReturn("GET");
|
||||
when(req.getRequestURI()).thenReturn("/auth/adminUser");
|
||||
when(requestAuthenticator.authorize(AUTH_INTERNAL_OR_ADMIN.authSettings(), req))
|
||||
.thenReturn(Optional.absent());
|
||||
.thenReturn(Optional.<AuthResult>absent());
|
||||
|
||||
handler.handleRequest(req, rsp);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user