aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_suite.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-04-03 09:00:36 -0400
committerDavid Robillard <d@drobilla.net>2023-04-06 07:19:10 -0400
commitab712f8f0ea58f1a36aced42332ed8d8ffab83d7 (patch)
tree683a177c8203fde3c200ba3b1bf258e281a14a8e /test/run_suite.py
parent1c9d83c0c449ce6e62631985ae0c2b415345c3a8 (diff)
downloadserd-ab712f8f0ea58f1a36aced42332ed8d8ffab83d7.tar.gz
serd-ab712f8f0ea58f1a36aced42332ed8d8ffab83d7.tar.bz2
serd-ab712f8f0ea58f1a36aced42332ed8d8ffab83d7.zip
Fix flake8 warnings and add test
Diffstat (limited to 'test/run_suite.py')
-rwxr-xr-xtest/run_suite.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_suite.py b/test/run_suite.py
index 9c3d27ee..3f935fcf 100755
--- a/test/run_suite.py
+++ b/test/run_suite.py
@@ -47,7 +47,7 @@ def run_eval_test(base_uri, command, in_path, good_path, out_path):
command, check=True, encoding="utf-8", stderr=DEVNULL, stdout=PIPE
)
- out = [l + "\n" for l in proc.stdout.split("\n")][:-1]
+ out = [line + "\n" for line in proc.stdout.split("\n")][:-1]
with open(good_path, "r", encoding="utf-8") as good:
return util.lines_equal(list(good), out, good_path, out_path)