From c5dd51a4dc545b1492065bf7c550817cdf49e1eb Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 25 Jan 2024 10:37:30 +1100 Subject: [PATCH] Fix syntax error in workbench_render_tests Correct even if the test isn't used, since syntax errors can trip up checking tools. --- tests/python/workbench_render_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/workbench_render_tests.py b/tests/python/workbench_render_tests.py index e232b01adbf..66bd9c9d92f 100644 --- a/tests/python/workbench_render_tests.py +++ b/tests/python/workbench_render_tests.py @@ -80,7 +80,7 @@ def main(): if test_dir_name.startswith('hair') and platform.system() == "Darwin": report.set_fail_threshold(0.050) - ok = report.run(test_dir, blender, get_arguments, batch.args=batch) + ok = report.run(test_dir, blender, get_arguments, batch=args.batch) sys.exit(not ok)