Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/python/view_layer/view_layer_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/view_layer/view_layer_common.py b/tests/python/view_layer/view_layer_common.py
index 4ca0fec0796..df47e72c327 100644
--- a/tests/python/view_layer/view_layer_common.py
+++ b/tests/python/view_layer/view_layer_common.py
@@ -182,7 +182,7 @@ def compare_files(file_a, file_b):
if DUMP_DIFF:
import subprocess
- subprocess.call(["diff", "-u", file_a, file_b])
+ subprocess.call(["diff", "-u", file_b, file_a])
if UPDATE_DIFF:
import subprocess
@@ -191,7 +191,7 @@ def compare_files(file_a, file_b):
if PDB:
import pdb
- print("Files differ:", file_a, file_b)
+ print("Files differ:", file_b, file_a)
pdb.set_trace()
return False