Fix syntax error in workbench_render_tests

Correct even if the test isn't used, since syntax errors can trip up
checking tools.
This commit is contained in:
Campbell Barton
2024-01-25 10:37:30 +11:00
parent 7436b578dd
commit c5dd51a4dc

View File

@@ -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)