Skip to content

Commit

Permalink
Fix a typo in rabbit_oauth2_config_SUITE, references #11965
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Sep 1, 2024
1 parent fa6d892 commit c831ae4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ end_per_group(with_verify_aud_false_for_resource_two, Config) ->
ResourceServers = application:get_env(rabbitmq_auth_backend_oauth2, resource_servers, #{}),
Proplist = maps:get(?RABBITMQ_RESOURCE_TWO, ResourceServers, []),
application:set_env(rabbitmq_auth_backend_oauth2, resource_servers,
map:put(?RABBITMQ_RESOURCE_TWO, proplists:delete(verify_aud, Proplist))),
maps:put(?RABBITMQ_RESOURCE_TWO, proplists:delete(verify_aud, Proplist), ResourceServers)),
Config;
end_per_group(with_default_key, Config) ->
KeyConfig = application:get_env(rabbitmq_auth_backend_oauth2, key_config, []),
Expand Down

0 comments on commit c831ae4

Please sign in to comment.