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')
-rw-r--r--tests/python/view_layer/test_background_set.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/python/view_layer/test_background_set.py b/tests/python/view_layer/test_background_set.py
index 5f1d31e823f..a26229d53a9 100644
--- a/tests/python/view_layer/test_background_set.py
+++ b/tests/python/view_layer/test_background_set.py
@@ -26,7 +26,6 @@ class UnitTesting(ViewLayerTesting):
# Update depsgraph.
main_scene.update()
- background_scene.update()
# Safety check, there should be no objects in thew newly created scene.
self.assertEqual(0, len(bpy.context.depsgraph.objects))
@@ -37,7 +36,6 @@ class UnitTesting(ViewLayerTesting):
# Update depsgraph.
main_scene.update()
- background_scene.update()
# Test if objects were properly added to depsgraph.
self.assertEqual(3, len(bpy.context.depsgraph.objects))
@@ -53,7 +51,6 @@ class UnitTesting(ViewLayerTesting):
# Update depsgraph.
main_scene.update()
- background_scene.update()
self.assertEqual(0, len(bpy.context.depsgraph.objects))