Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2022-03-30 20:48:56 +0200
committerCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2022-04-02 16:43:59 +0200
commitf9460f25543135e9b436285cbf25e30dc22c57a8 (patch)
treeb1f67f0b2cd7737004541eab9d97143a8e3b9bce /testing/parser.py
parent63b7c084faa1ef42ac22d94ad2832903caf954aa (diff)
flake8: fix style issues on testing
Change-Id: I4e3e922ff95040999bc3bb1463c2e29783d5ee14 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'testing/parser.py')
-rw-r--r--testing/parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/parser.py b/testing/parser.py
index 7e1e6c792..05bfdab8a 100644
--- a/testing/parser.py
+++ b/testing/parser.py
@@ -129,7 +129,7 @@ def _parse_tests(test_log):
match = re.match(pat, line, re.VERBOSE)
if match and line.split()[-1] != "sec":
# don't change the number of lines
- lines[idx : idx + 2] = [line.rstrip() + lines[idx + 1], ""]
+ lines[idx:idx + 2] = [line.rstrip() + lines[idx + 1], ""]
pat = _TEST_PAT
for line in lines: