[Bf-blender-cvs] [0ed089cebda] master: LibLink: Enable unittest that was previously failing in append case.

Bastien Montagne noreply at git.blender.org
Tue Sep 14 18:07:33 CEST 2021


Commit: 0ed089cebda2580a1347d184055b70f0d1f32b76
Author: Bastien Montagne
Date:   Tue Sep 14 17:59:18 2021 +0200
Branches: master
https://developer.blender.org/rB0ed089cebda2580a1347d184055b70f0d1f32b76

LibLink: Enable unittest that was previously failing in append case.

Previous commit fixed it.

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

M	tests/python/bl_blendfile_liblink.py

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

diff --git a/tests/python/bl_blendfile_liblink.py b/tests/python/bl_blendfile_liblink.py
index ac71fa85246..992bf6b89d9 100644
--- a/tests/python/bl_blendfile_liblink.py
+++ b/tests/python/bl_blendfile_liblink.py
@@ -212,7 +212,7 @@ class TestBlendLibAppendBasic(TestBlendLibLinkHelper):
 
         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 not 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