From 3635d1b7257e1909d9ee82b1ebecd83af8870d6e Mon Sep 17 00:00:00 2001 From: Tisha Soumya Date: Mon, 13 Sep 2021 15:31:56 +0530 Subject: [PATCH] fix : display changes Co-authored-by: ERR ! <75872316+amino19@users.noreply.github.com> --- data_structures/reverse_a_linked_list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } /**