We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ad2b62 commit 8f906a5Copy full SHA for 8f906a5
tests/geometry/stack/test_stack_properties.py
@@ -17,6 +17,6 @@ def test_update_keyframe(mocker):
17
stack._objs = [mock_rod] * n_repeat
18
stack.update_keyframe(val)
19
20
- mock_rod.set_keyframe.assert_called()
21
- assert mock_rod.set_keyframe.call_count == n_repeat
22
- mock_rod.set_keyframe.assert_called_with(val)
+ mock_rod.update_keyframe.assert_called()
+ assert mock_rod.update_keyframe.call_count == n_repeat
+ mock_rod.update_keyframe.assert_called_with(val)
0 commit comments