diff --git a/math/check_amicable_pair.cpp b/math/check_amicable_pair.cpp index 733f1d61d..7a86f8e31 100644 --- a/math/check_amicable_pair.cpp +++ b/math/check_amicable_pair.cpp @@ -71,7 +71,7 @@ static void tests() { assert(math::are_amicable(17296, 18416) == true); assert(math::are_amicable(18416, 17296) == true); - std::cout << "all tests have passed" << std::endl; + std::cout << "All tests have successfully passed!" << std::endl; } /**