diff options
author | Linda Wang <wangwulin@huawei.com> | 2018-03-13 07:54:10 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2018-03-13 07:54:10 +0000 |
commit | 48af8650ee7d9727c6fc03c52feea4739ffab15c (patch) | |
tree | 8d7ea064b2c4f89bd71e9f169a7f1d5b48072499 | |
parent | ab3efe733bcd366b87446b04ae7a5c2a30746c9a (diff) |
Fix tempest_custom
Change-Id: I684c06eae899d9bc468e0be6a1537f9c942e86ce
Signed-off-by: Linda Wang <wangwulin@huawei.com>
-rw-r--r-- | functest/opnfv_tests/openstack/tempest/tempest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/tempest.py b/functest/opnfv_tests/openstack/tempest/tempest.py index d7b33ecb6..1d85e689a 100644 --- a/functest/opnfv_tests/openstack/tempest/tempest.py +++ b/functest/opnfv_tests/openstack/tempest/tempest.py @@ -104,7 +104,7 @@ class TempestCommon(testcase.TestCase): if self.mode == 'custom': if os.path.isfile(conf_utils.TEMPEST_CUSTOM): shutil.copyfile( - conf_utils.TEMPEST_CUSTOM, self.raw_list) + conf_utils.TEMPEST_CUSTOM, self.list) else: raise Exception("Tempest test list file %s NOT found." % conf_utils.TEMPEST_CUSTOM) |