Skip to content

Commit

Permalink
Remove some spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcialRosales committed Sep 27, 2024
1 parent 697b5a2 commit b572872
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions deps/oauth2_client/test/system_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -328,17 +328,15 @@ get_openid_configuration_using_path_and_custom_endpoint(Config) ->
SslOptions = [{ssl, ExpectedOAuthProvider#oauth_provider.ssl_options}],
{ok, Actual} = oauth2_client:get_openid_configuration(
build_openid_discovery_endpoint(build_issuer("https", ?ISSUER_PATH),
?CUSTOM_OPENID_CONFIGURATION_ENDPOINT),
SslOptions),
?CUSTOM_OPENID_CONFIGURATION_ENDPOINT), SslOptions),
ExpectedOpenId = map_oauth_provider_to_openid_configuration(ExpectedOAuthProvider),
assertOpenIdConfiguration(ExpectedOpenId, Actual).
get_openid_configuration_using_custom_endpoint(Config) ->
ExpectedOAuthProvider = ?config(oauth_provider, Config),
SslOptions = [{ssl, ExpectedOAuthProvider#oauth_provider.ssl_options}],
{ok, Actual} = oauth2_client:get_openid_configuration(
build_openid_discovery_endpoint(build_issuer("https"),
?CUSTOM_OPENID_CONFIGURATION_ENDPOINT),
SslOptions),
?CUSTOM_OPENID_CONFIGURATION_ENDPOINT), SslOptions),
ExpectedOpenId = map_oauth_provider_to_openid_configuration(ExpectedOAuthProvider),
assertOpenIdConfiguration(ExpectedOpenId, Actual).

Expand Down

0 comments on commit b572872

Please sign in to comment.