Increase tests account passwords

This patch increases passwords for test
accounts (admin and general) to be more than 32 symbols to
fit security compliance

Change-Id: I280f78880a0bd104240d41c0bbfbe3c264a8e9cf
Related-PROD: PROD-30505
(cherry picked from commit 66e204c1565eb7719b9930bdb8be6221f8373066)
diff --git a/runtest/files/test_accounts.yml b/runtest/files/test_accounts.yml
index 12d5235..d5d5164 100644
--- a/runtest/files/test_accounts.yml
+++ b/runtest/files/test_accounts.yml
@@ -14,16 +14,17 @@
 {%- set identity_name = tempest.get('keystone_profile_admin', 'admin_identity') %}
 {%- set admin_project = kclient.get('os_client_config',{}).get('cfgs', {}).get('root', {}).get('content',{}).get('clouds',{}).get(identity_name, {}).get('auth', {}).get('project_name', 'admin') %}
 {%- set admin_user_name = prefix + '_admin_' + project_index %}
+{# Password length is set to be more than 32 symbols to comply security compliance #}
 - username: {{ admin_user_name }}
   project_name: {{ admin_project }}
-  password: 'secret'
+  password: 'the_top_secret_admin_user_password'
   roles:
     - 'admin'
 {%- endif %}
 
 - username: {{ user_name }}
   project_name: {{ project_name }}
-  password: 'workshop'
+  password: 'the_top_secret_general_user_password'
   roles:
 {%- for role_name in tempest.test_accounts.get('roles', ['Member']) %}
     - {{ role_name }}