From 2e7db9c167d90aaf3753cdaea5e2f44f0ad82283 Mon Sep 17 00:00:00 2001 From: Sean Kim Date: Thu, 30 Jan 2025 05:44:20 +0100 Subject: [PATCH] Fix: Remove missed device parameter Missed in ea7d07098bbf362859a2f5da7afba0079ac68bbf Pull Request: https://projects.blender.org/blender/blender/pulls/133794 --- tests/python/modules/render_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/modules/render_report.py b/tests/python/modules/render_report.py index 5b4dd34f29e..1117a7dcfa2 100755 --- a/tests/python/modules/render_report.py +++ b/tests/python/modules/render_report.py @@ -555,7 +555,7 @@ class Report: silently_failed_tests = [] all_files = list(blend_list(dirpath, self.blocklist)) all_files.sort() - if not list(blend_list(dirpath, self.device, [])): + if not list(blend_list(dirpath, [])): print_message("No .blend files found in '{}'!".format(dirpath), 'FAILURE', 'FAILED') return False