diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-08-10 12:06:05 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-08-10 12:07:26 +0000 |
commit | 13067de652d6ccdcfc85f0f5e65841b644d9a6e9 (patch) | |
tree | 0ad1f87eb56b926b833c89a32f385e28bb62b4ff /functest/opnfv_tests | |
parent | 42877bb48714293d3ec761f42007fcc8fa925724 (diff) |
Fix the logic of adding/updating tempest.conf
Change-Id: I850311a9306607106836f24594019e98d2fd9499
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'functest/opnfv_tests')
-rw-r--r-- | functest/opnfv_tests/openstack/tempest/conf_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/conf_utils.py b/functest/opnfv_tests/openstack/tempest/conf_utils.py index 2313ec04..7c88fc5d 100644 --- a/functest/opnfv_tests/openstack/tempest/conf_utils.py +++ b/functest/opnfv_tests/openstack/tempest/conf_utils.py @@ -336,7 +336,7 @@ def configure_tempest_update_params(tempest_conf_file, 'into tempest.conf file') with open(TEMPEST_CONF_YAML) as f: conf_yaml = yaml.safe_load(f) - if not conf_yaml: + if conf_yaml: sections = config.sections() for section in conf_yaml: if section not in sections: |