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:
Diffstat (limited to 'tests/python/view_layer/test_evaluation_selectability_f.py')
-rw-r--r--tests/python/view_layer/test_evaluation_selectability_f.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/view_layer/test_evaluation_selectability_f.py b/tests/python/view_layer/test_evaluation_selectability_f.py
index a902dd1dada..16aa86a0c2a 100644
--- a/tests/python/view_layer/test_evaluation_selectability_f.py
+++ b/tests/python/view_layer/test_evaluation_selectability_f.py
@@ -23,14 +23,14 @@ class UnitTesting(ViewLayerTesting):
scene_collection = scene.master_collection.collections.new('collection')
layer_collection = view_layer.collections.link(scene_collection)
- bpy.context.scene.update() # update depsgraph
+ view_layer.update() # update depsgraph
scene_collection.objects.link(cube)
self.assertTrue(layer_collection.enabled)
self.assertTrue(layer_collection.selectable)
- bpy.context.scene.update() # update depsgraph
+ view_layer.update() # update depsgraph
cube.select_set(True)
self.assertTrue(cube.select_get())