diff --git a/source/blender/animrig/intern/bone_collections_test.cc b/source/blender/animrig/intern/bone_collections_test.cc index 388c5bef2be..cc23260b772 100644 --- a/source/blender/animrig/intern/bone_collections_test.cc +++ b/source/blender/animrig/intern/bone_collections_test.cc @@ -1185,7 +1185,7 @@ TEST_F(ArmatureBoneCollections, bcoll_move_to_parent__within_siblings) EXPECT_EQ(0, arm.collection_array[5]->child_count); EXPECT_EQ(0, arm.collection_array[6]->child_count); - /* Move r0_child1 to become the 3nd child of root_0. */ + /* Move r0_child1 to become the 3rd child of root_0. */ EXPECT_EQ(5, armature_bonecoll_move_to_parent(&arm, 2, /* From index. */ diff --git a/source/blender/animrig/intern/evaluation_test.cc b/source/blender/animrig/intern/evaluation_test.cc index d002a2a2374..45948113ae6 100644 --- a/source/blender/animrig/intern/evaluation_test.cc +++ b/source/blender/animrig/intern/evaluation_test.cc @@ -117,8 +117,8 @@ class AnimationEvaluationTest : public testing::Test { << std::endl << " " << rna_path << "[" << array_index << "] evaluation did not produce the expected result:" << std::endl - << " evaluted to: " << testing::PrintToString(eval_value) << std::endl - << " expected : " << testing::PrintToString(expect_value) << std::endl; + << " evaluated to: " << testing::PrintToString(eval_value) << std::endl + << " expected : " << testing::PrintToString(expect_value) << std::endl; } return testing::AssertionSuccess(); @@ -136,7 +136,7 @@ class AnimationEvaluationTest : public testing::Test { << std::endl << " " << rna_path << "[" << array_index << "] evaluation should NOT produce a value:" << std::endl - << " evaluted to: " << testing::PrintToString(*eval_value) << std::endl; + << " evaluated to: " << testing::PrintToString(*eval_value) << std::endl; } return testing::AssertionSuccess();