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
path: root/tests
diff options
context:
space:
mode:
authorBastien Montagne <b.mont29@gmail.com>2020-02-18 12:28:33 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-02-18 12:28:33 +0300
commit8a2228a59785f898059eb0bafc74c5b5897555eb (patch)
treeca5f8419f28825b7602cae65406488b6c6c4d8af /tests
parent79f99becafa3e2a2d7e0b6779961a4e2b58b371e (diff)
Remove debug prints from blendfile_liblink.
rBf35f7bd97a4151 was the proper fix it seems.
Diffstat (limited to 'tests')
-rw-r--r--tests/python/bl_blendfile_liblink.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/python/bl_blendfile_liblink.py b/tests/python/bl_blendfile_liblink.py
index 5c96944446a..7d93d7c8455 100644
--- a/tests/python/bl_blendfile_liblink.py
+++ b/tests/python/bl_blendfile_liblink.py
@@ -23,7 +23,6 @@ class TestBlendLibLinkSaveLoadBasic(TestHelper):
self.ensure_path(output_dir)
output_path = os.path.join(output_dir, "blendlib.blend")
- print("Saving lib blend file to ", output_path)
bpy.ops.wm.save_as_mainfile(filepath=output_path, check_existing=False, compress=False)
bpy.ops.wm.read_factory_settings()
@@ -32,17 +31,12 @@ class TestBlendLibLinkSaveLoadBasic(TestHelper):
link_dir = os.path.join(output_path, "Mesh")
bpy.ops.wm.link(directory=link_dir, filename="LibMesh")
- print("Linked lib blend file from ", link_dir)
- print("lib file path: ", bpy.data.libraries[0].filepath)
-
orig_data = self.blender_data_to_tuple(bpy.data, "orig_data")
output_path = os.path.join(output_dir, "blendfile.blend")
bpy.ops.wm.save_as_mainfile(filepath=output_path, check_existing=False, compress=False)
- print("lib file path after saving: ", bpy.data.libraries[0].filepath)
bpy.ops.wm.open_mainfile(filepath=output_path, load_ui=False)
- print("lib file path after reloading: ", bpy.data.libraries[0].filepath)
read_data = self.blender_data_to_tuple(bpy.data, "read_data")
assert(orig_data == read_data)