summaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authorMichael Klishin <mklishin@pivotal.io>2015-11-06 08:57:10 +0300
committerMichael Klishin <mklishin@pivotal.io>2015-11-06 08:57:10 +0300
commit6a5dd103a57a3f361bcfdd923a5c4ee63e96a0eb (patch)
tree3a74ba7704b206b93edc313409efc27b9e63e99d /test/src
parenta7b4a60a5e110e1a013f3cd95d567da417121d4a (diff)
downloadrabbitmq-server-git-6a5dd103a57a3f361bcfdd923a5c4ee63e96a0eb.tar.gz
auth_user => authenticate_user
"auth" is an overloaded term that some use to say "authentication" and some to say "authorization". We distinguish between authn and authz in RabbitMQ for that reason. So lets be more specific in user-facing bits.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/rabbit_tests.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/rabbit_tests.erl b/test/src/rabbit_tests.erl
index a96a9d8f39..d4072c62c4 100644
--- a/test/src/rabbit_tests.erl
+++ b/test/src/rabbit_tests.erl
@@ -1016,9 +1016,9 @@ test_user_management() ->
TestTags([]),
%% user authentication
- ok = control_action(auth_user, ["foo", "baz"]),
+ ok = control_action(authenticate_user, ["foo", "baz"]),
{refused, _User, _Format, _Params} =
- control_action(auth_user, ["foo", "bar"]),
+ control_action(authenticate_user, ["foo", "bar"]),
%% vhost creation
ok = control_action(add_vhost, ["/testhost"]),