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:
authorBastien Montagne <bastien@blender.org>2021-09-14 18:59:18 +0300
committerBastien Montagne <bastien@blender.org>2021-09-14 18:59:18 +0300
commit0ed089cebda2580a1347d184055b70f0d1f32b76 (patch)
treebc3caf2665ccc5b26f4794d5e647fd68b47e20de
parent3be5ce4aad5e4bbc25474511e56036d6980e1cea (diff)
LibLink: Enable unittest that was previously failing in append case.
Previous commit fixed it.
-rw-r--r--tests/python/bl_blendfile_liblink.py2
1 files changed, 1 insertions, 1 deletions
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)