summaryrefslogtreecommitdiff
path: root/tests/system/suite_tools/tst_git_local/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_tools/tst_git_local/test.py')
-rw-r--r--tests/system/suite_tools/tst_git_local/test.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/system/suite_tools/tst_git_local/test.py b/tests/system/suite_tools/tst_git_local/test.py
index 07208367fd..ab36b86b25 100644
--- a/tests/system/suite_tools/tst_git_local/test.py
+++ b/tests/system/suite_tools/tst_git_local/test.py
@@ -65,7 +65,8 @@ def __clickCommit__(count):
# find commit
try:
# Commits are listed in reverse chronologic order, so we have to invert count
- line = filter(lambda line: line.startswith("commit"), content.splitlines())[-count].strip()
+ line = list(filter(lambda line: line.startswith("commit"),
+ content.splitlines()))[-count].strip()
commit = line.split(" ", 1)[1]
except:
test.fail("Could not find the %d. commit - leaving test" % count)
@@ -90,7 +91,7 @@ def __clickCommit__(count):
{"Committer: %s, %s" % (id, time): True}]
for line, exp in zip(show.splitlines(), expected):
expLine = list(exp.keys())[0]
- isRegex = exp.values()[0]
+ isRegex = list(exp.values())[0]
if isRegex:
test.verify(re.match(expLine, line), "Verifying commit header line '%s'" % line)
else: