From ab712f8f0ea58f1a36aced42332ed8d8ffab83d7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 3 Apr 2023 09:00:36 -0400 Subject: Fix flake8 warnings and add test --- test/run_suite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/run_suite.py') 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) -- cgit v1.2.1