From 55d9e6d7a95db105bbe8543346295d2e136877e3 Mon Sep 17 00:00:00 2001 From: ewd00010 <78011234+ewd00010@users.noreply.github.com> Date: Tue, 30 May 2023 15:14:55 +0100 Subject: [PATCH] Update math/check_amicable_pair.cpp Co-authored-by: David Leal --- math/check_amicable_pair.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } /**