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 <bastien@blender.org>2021-10-19 19:00:53 +0300
committerBastien Montagne <bastien@blender.org>2021-10-19 19:01:26 +0300
commita3d4ed20f9511c90fb8eea0f7555c1380a296f76 (patch)
tree7661b1ebc96b1a61822ccbc178b966a2f8d00bd3 /tests
parent7a61916717e3daed8172e679d35fe61bf13f360f (diff)
Fix liblink tests after recent commit.
NOTE: This needs new tests, no time now, will do tomorrow.
Diffstat (limited to 'tests')
-rw-r--r--tests/python/bl_blendfile_liblink.py3
1 files changed, 1 insertions, 2 deletions
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)