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-08-04 13:36:06 +0300
committerBastien Montagne <bastien@blender.org>2021-08-04 13:38:13 +0300
commitadd719e31aa7d5668fd33cb1a1e02417a334be97 (patch)
treeea27437503ac69f1b6f63a6c44af3a1ef6a5218c /tests
parentac6b263906c92d6adaafd014db28e0863cfd13e9 (diff)
Tweak to recent liboverride API addition: naming.
Rename new API function introduced in recent rB3b0fab6dfaa0 to match our convention to put the action (verb) at the end of names: `operations_update`. Sorry for not catching that during review.
Diffstat (limited to 'tests')
-rw-r--r--tests/python/bl_blendfile_library_overrides.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/bl_blendfile_library_overrides.py b/tests/python/bl_blendfile_library_overrides.py
index 138c5fd13b5..19f06dc698e 100644
--- a/tests/python/bl_blendfile_library_overrides.py
+++ b/tests/python/bl_blendfile_library_overrides.py
@@ -60,7 +60,7 @@ class TestLibraryOverrides(TestHelper, unittest.TestCase):
assert(len(local_id.override_library.properties) == 0)
local_id.location.y = 1.0
- local_id.override_library.update_operations()
+ local_id.override_library.operations_update()
assert(len(local_id.override_library.properties) == 1)
override_prop = local_id.override_library.properties[0]
@@ -104,7 +104,7 @@ class TestLibraryOverrides(TestHelper, unittest.TestCase):
assert(local_id.scale.x == 0.5)
assert(local_id.location.y == 1.0)
- local_id.override_library.update_operations()
+ local_id.override_library.operations_update()
assert(local_id.scale.x == 1.0)
assert(local_id.location.y == 1.0)