diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2017-10-09 16:46:08 +0800 |
---|---|---|
committer | xiaodong shang <shang.xiaodong@zte.com.cn> | 2017-10-09 09:17:15 +0000 |
commit | 9e8270d05c80712d579b627d46964bcf99458228 (patch) | |
tree | 4b9a9ea033f1d12e6fcef6227257ffb7ba67b684 /tests | |
parent | c5c33ff28000cf16ee8ccf4426ea0e748e8a38c9 (diff) |
Fix test for apex
Currently the test in apex is error, the patch will fix it.
JIRA: PARSER-160
Change-Id: I0c290f7819468e1f400f1610fc87bceb72086b92
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/functest_run.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/functest_run.sh b/tests/functest_run.sh index abd0ece..3afbd56 100755 --- a/tests/functest_run.sh +++ b/tests/functest_run.sh @@ -104,17 +104,17 @@ create_parser_user_and_project() { } # 3. grant role for parser user - openstack ${debug} role list --user ${PARSER_USER} --project ${PARSER_PROJECT} \ + openstack ${debug} role assignment list --user ${PARSER_USER} --project ${PARSER_PROJECT} \ | grep -qow ${PARSER_ROLE} && { echo " User ${PARSER_USER} has role ${PARSER_ROLE} in project ${PARSER_PROJECT}, doesn't create." } || { openstack ${debug} role add ${PARSER_ROLE} --user ${PARSER_USER} \ --project ${PARSER_PROJECT} - echo " Grant user ${PARSER_USER} the role ${PARSER_ROLE} in project ${PARSER_PROJECT} successful." + echo " Grant user ${PARSER_USER} the role of ${PARSER_ROLE} in project ${PARSER_PROJECT} successful." openstack ${debug} role list | grep -qow heat_stack_owner && { openstack ${debug} role add heat_stack_owner --user ${PARSER_USER} \ --project ${PARSER_PROJECT} - echo " Grant user ${PARSER_USER} the role heat_stack_owner in project ${PARSER_PROJECT} successful." + echo " Grant user ${PARSER_USER} the role of heat_stack_owner in project ${PARSER_PROJECT} successful." } } |