Refactor: keyframing unit tests #116816

Merged
Christoph Lendenfeld merged 2 commits from ChrisLend/blender:refactor_keying_tests into main 2024-01-05 13:38:53 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 457726e51e - Show all commits

View File

@ -19,7 +19,7 @@ def _fcurve_paths_match(fcurves: list, expected_paths: list) -> bool:
expected_paths.sort()
if data_paths != expected_paths:
raise AssertionError(
f"Expected paths do not match F-Curve paths. Expected: [{expected_paths}]. F-Curve: [{data_paths}]")
f"Expected paths do not match F-Curve paths. Expected: {expected_paths}. F-Curve: {data_paths}")
def _get_view3d_context():