summaryrefslogtreecommitdiffstats
path: root/dovetail/testcase.py
diff options
context:
space:
mode:
authorMatthewLi <matthew.lijun@huawei.com>2016-12-13 01:23:11 -0500
committerMatthewLi <matthew.lijun@huawei.com>2016-12-13 01:24:50 -0500
commit0a90987741fe2b0a2cc81c5b8ffef46a8111f250 (patch)
tree95772d5b9a1a6a3b8c0035766e57cd623d1265cd /dovetail/testcase.py
parentcf6045f81bdbe8d53b2ef24fbe1ecdf571127158 (diff)
bugfix for flake8 format
error log see https://build.opnfv.org/ci/view/dovetail/job/dovetail-merge-master/58/console Change-Id: I7f5a7f290d82e79249561322259aa5e72186e126 Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'dovetail/testcase.py')
-rw-r--r--dovetail/testcase.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dovetail/testcase.py b/dovetail/testcase.py
index 3385fe04..429b9154 100644
--- a/dovetail/testcase.py
+++ b/dovetail/testcase.py
@@ -145,7 +145,7 @@ class Testcase:
@classmethod
def load(cls):
for root, dirs, files in \
- os.walk(dt_cfg.dovetail_config['TESTCASE_PATH']):
+ os.walk(dt_cfg.dovetail_config['TESTCASE_PATH']):
for testcase_file in files:
with open(os.path.join(root, testcase_file)) as f:
testcase_yaml = yaml.safe_load(f)
@@ -182,7 +182,7 @@ class Testsuite:
@classmethod
def load(cls):
for root, dirs, files in \
- os.walk(dt_cfg.dovetail_config['COMPLIANCE_PATH']):
+ os.walk(dt_cfg.dovetail_config['COMPLIANCE_PATH']):
for testsuite_yaml in files:
with open(os.path.join(root, testsuite_yaml)) as f:
testsuite_yaml = yaml.safe_load(f)