[Bf-blender-cvs] [a3d4ed20f95] master: Fix liblink tests after recent commit.

Bastien Montagne noreply at git.blender.org
Tue Oct 19 18:01:31 CEST 2021


Commit: a3d4ed20f9511c90fb8eea0f7555c1380a296f76
Author: Bastien Montagne
Date:   Tue Oct 19 18:00:53 2021 +0200
Branches: master
https://developer.blender.org/rBa3d4ed20f9511c90fb8eea0f7555c1380a296f76

Fix liblink tests after recent commit.

NOTE: This needs new tests, no time now, will do tomorrow.

===================================================================

M	tests/python/bl_blendfile_liblink.py

===================================================================

diff --git a/tests/python/bl_blendfile_liblink.py b/tests/python/bl_blendfile_liblink.py
index 4545e0b846a..918c74d17d0 100644
--- a/tests/python/bl_blendfile_liblink.py
+++ b/tests/python/bl_blendfile_liblink.py
@@ -211,8 +211,7 @@ class TestBlendLibAppendBasic(TestBlendLibLinkHelper):
                           instance_object_data=False, set_fake=False, use_recursive=False, do_reuse_local_id=False)
 
         assert(len(bpy.data.meshes) == 1)
-        # This one fails currently, for unclear reasons.
-        assert(bpy.data.meshes[0].library is not None)
+        assert(bpy.data.meshes[0].library is None)
         assert(bpy.data.meshes[0].users == 1)
         assert(len(bpy.data.objects) == 1)
         assert(bpy.data.objects[0].library is None)



More information about the Bf-blender-cvs mailing list