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:
authorJeroen Bakker <jeroen@blender.org>2021-03-22 16:11:58 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-22 16:11:58 +0300
commit7b7b554f9467c36e404b26cfbea6774f6d32db64 (patch)
tree2b3d57511bc7ebb681a7f1dd212238a51efcd12b /tests
parent1a7f9b5005ec1798cad9be15a4e75d389b2c9373 (diff)
Fix: wrong use of assert in recent commit.
Diffstat (limited to 'tests')
-rw-r--r--tests/python/bl_blendfile_library_overrides.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/python/bl_blendfile_library_overrides.py b/tests/python/bl_blendfile_library_overrides.py
index 87e25eff8ca..ab75a410590 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) == 1)
assert(len(local_id.override_library.properties) == 1)
override_prop = local_id.override_library.properties[0]
- assert(override_prop.rna_path, "location");
+ assert(override_prop.rna_path == "location");
assert(len(override_prop.operations) == 1)
override_operation = override_prop.operations[0]
assert (override_operation.operation == 'REPLACE')