Skip to content
Snippets Groups Projects
Unverified Commit abaccf1f authored by Łukasz Plewa's avatar Łukasz Plewa Committed by GitHub
Browse files

Merge pull request #4934 from pbalcer/py-cstyle

test: fix cstyle issue in py testframework
parents 58a48430 47d9b4c8
No related branches found
No related tags found
No related merge requests found
......@@ -262,12 +262,12 @@ class Test(BaseTest):
"""
envs = {}
for l in LIBS_LIST:
envs['{}_LOG_LEVEL'.format(l.upper())] = '3'
for libs in LIBS_LIST:
envs['{}_LOG_LEVEL'.format(libs.upper())] = '3'
log_file = os.path.join(self.cwd,
'{}_{}.log'.format(l, self.testnum))
envs['{}_LOG_FILE'.format(l.upper())] = log_file
self.log_files[l] = log_file
'{}_{}.log'.format(libs, self.testnum))
envs['{}_LOG_FILE'.format(libs.upper())] = log_file
self.log_files[libs] = log_file
return envs
def get_log_files(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment