Anim: Unit tests for "Insert Needed" #116419

Merged
Christoph Lendenfeld merged 4 commits from ChrisLend/blender:unit_tests_insert_needed into main 2024-01-05 09:52:31 +01:00
1 changed files with 0 additions and 4 deletions
Showing only changes of commit a936d5653c - Show all commits

View File

@ -433,8 +433,6 @@ class InsertNeededTest(AbstractKeyframingTest, unittest.TestCase):
raise AssertionError(f"Did not expect a key on {fcurve.data_path}")
self.assertEqual(expected_keys[fcurve.data_path][fcurve.array_index], len(fcurve.keyframe_points))
bpy.data.objects.remove(keyed_object, do_unlink=True)
def test_insert_needed_bone(self):
armature_obj = _create_armature()
@ -465,8 +463,6 @@ class InsertNeededTest(AbstractKeyframingTest, unittest.TestCase):
raise AssertionError(f"Did not expect a key on {fcurve.data_path}")
self.assertEqual(expected_keys[fcurve.data_path][fcurve.array_index], len(fcurve.keyframe_points))
bpy.data.objects.remove(armature_obj, do_unlink=True)
def main():
global args