diff options
author | 2016-08-29 12:02:46 +0200 | |
---|---|---|
committer | 2016-09-20 10:38:36 +0200 | |
commit | ad9574a7ae5d311789faa74fa6d72b00aa99db0b (patch) | |
tree | b4e7f5aa27d66c0d91d13225af5d1900173ae7e7 | |
parent | c0b55911d6a97ff6d40054351690f679358f0763 (diff) |
Update password to conform to password set in test platform
Change-Id: I9919da5e559a396d54e0f8a24799a096c5b9102f
(cherry picked from commit c60040a9f611ca1a22be224375f1f3eed92eed9a)
-rw-r--r-- | moonclient/moonclient/tests/tests_empty_policy_new_user.json | 6 | ||||
-rwxr-xr-x | tests/run_tests.py | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/moonclient/moonclient/tests/tests_empty_policy_new_user.json b/moonclient/moonclient/tests/tests_empty_policy_new_user.json index 91933e4b..6d29f4a8 100644 --- a/moonclient/moonclient/tests/tests_empty_policy_new_user.json +++ b/moonclient/moonclient/tests/tests_empty_policy_new_user.json @@ -3207,7 +3207,7 @@ }, { "name": "add_subject", - "command": "subject add demo --subject_pass password", + "command": "subject add demo --subject_pass console", "result": "", "description": "Add demo subject.", "command_options": "" @@ -3374,7 +3374,7 @@ }, { "name": "add_subject", - "command": "subject add demo --subject_pass password", + "command": "subject add demo --subject_pass console", "result": "", "description": "Add demo subject.", "command_options": "" @@ -3429,7 +3429,7 @@ { "auth_name": "demo", - "auth_password": "password", + "auth_password": "console", "auth_tenant": "admin", "description": "Change user to demo" }, diff --git a/tests/run_tests.py b/tests/run_tests.py index 57ef95bc..2b932036 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -33,7 +33,7 @@ logger = ft_logger.Logger("moon").getLogger() def main(): - cmd = "moon test --self" + cmd = "moon test --password console --self" start_time = time.time() |