diff --git a/data_structures/reverse_a_linked_list.cpp b/data_structures/reverse_a_linked_list.cpp index 890f5ed4d..07cbb6510 100644 --- a/data_structures/reverse_a_linked_list.cpp +++ b/data_structures/reverse_a_linked_list.cpp @@ -169,7 +169,7 @@ static void test() { // Reversal Testing assert(L.top() == 18); assert(L.last() == 11); - std::cout << "Passed" << std::endl; + std::cout << "All tests have successfully passed!" << std::endl; } /**