diff options
author | rexlee8776 <limingjiang@huawei.com> | 2016-07-28 10:35:44 +0000 |
---|---|---|
committer | rexlee8776 <limingjiang@huawei.com> | 2016-07-28 10:35:44 +0000 |
commit | a86b9b49678b0fea6e7f7c920a8966aeef6721ee (patch) | |
tree | f57dc092c114f88e0085047a600628de05ab9be9 | |
parent | 7d5d227ecb7163271cf1645d0affb0134f5ff039 (diff) |
bug_fix_parse_suite_wrong_installer_type
JIRA: YARDSTICK-305
Change-Id: I0224054e19c7bf764a9da1fc1fb7bed09dd40ef7
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
-rw-r--r-- | yardstick/cmd/commands/task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/cmd/commands/task.py b/yardstick/cmd/commands/task.py index 18b72e726..ca7c42897 100644 --- a/yardstick/cmd/commands/task.py +++ b/yardstick/cmd/commands/task.py @@ -206,7 +206,7 @@ class TaskParser(object): test_cases_dir += os.sep cur_pod = os.environ.get('NODE_NAME', None) - cur_installer = os.environ.get('INSTALL_TYPE', None) + cur_installer = os.environ.get('INSTALLER_TYPE', None) valid_task_files = [] valid_task_args = [] |