Skip to content

Commit

Permalink
oxAuth #440 #441
Browse files Browse the repository at this point in the history
  • Loading branch information
qbert2k committed Jan 20, 2017
1 parent 831e813 commit 7419809
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Expand Up @@ -35,7 +35,7 @@
* OC5:FeatureTest-Providing ID Token with max age Restriction
*
* @author Javier Rojas Blum
* @version June 15, 2016
* @version January 20, 2017
*/
public class ProvidingIdTokenWithMaxAgeRestriction extends BaseTest {

Expand Down Expand Up @@ -300,8 +300,8 @@ public void providingIdTokenWithMaxAgeRestrictionJwtAuthorizationRequest(
String authJwt = jwtAuthorizationRequest.getEncodedJwt();
authorizationRequest.setRequest(authJwt);

AuthorizationResponse authorizationResponse = authenticateResourceOwnerAndGrantAccess(
authorizationEndpoint, authorizationRequest, userId, userSecret);
AuthorizationResponse authorizationResponse = authenticateResourceOwner(
authorizationEndpoint, authorizationRequest, userId, userSecret, false);

assertNotNull(authorizationResponse.getLocation());
assertNotNull(authorizationResponse.getCode());
Expand Down
Expand Up @@ -28,7 +28,7 @@
* OC5:FeatureTest-Support prompt value login
*
* @author Javier Rojas Blum
* @version December 15, 2015
* @version January 20, 2017
*/
public class SupportPromptValueLogin extends BaseTest {

Expand Down Expand Up @@ -115,8 +115,8 @@ public void supportPromptValueLogin(
authorizationRequest.getPrompts().add(Prompt.LOGIN);
authorizationRequest.setSessionState(sessionState);

AuthorizationResponse authorizationResponse = authenticateResourceOwnerAndGrantAccess(
authorizationEndpoint, authorizationRequest, userId, userSecret);
AuthorizationResponse authorizationResponse = authenticateResourceOwner(
authorizationEndpoint, authorizationRequest, userId, userSecret, false);

assertNotNull(authorizationResponse.getLocation());
assertNotNull(authorizationResponse.getCode());
Expand Down

0 comments on commit 7419809

Please sign in to comment.