Skip to content

Commit

Permalink
♻ : use redirectUri instead of redirectUriTemplate
Browse files Browse the repository at this point in the history
redirectUriTemplate method is deprecated
  • Loading branch information
juwit committed Sep 17, 2021
1 parent 929914c commit 492778b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void getOAuth2User_shouldReturnANewOAuthUser() {
.withRegistrationId("test_registration_id")
.authorizationGrantType(AuthorizationGrantType.AUTHORIZATION_CODE)
.clientId("test_client_id")
.redirectUriTemplate("test_uri_template")
.redirectUri("test_uri_template")
.authorizationUri("test_authorization_uri")
.tokenUri("test_token_uri")
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void getOAuth2User_shouldReturnANewOAuthUser() {
.withRegistrationId("test_registration_id")
.authorizationGrantType(AuthorizationGrantType.AUTHORIZATION_CODE)
.clientId("test_client_id")
.redirectUriTemplate("test_uri_template")
.redirectUri("test_uri_template")
.authorizationUri("test_authorization_uri")
.tokenUri("test_token_uri")
.build();
Expand Down

0 comments on commit 492778b

Please sign in to comment.