From 06078006f65869d9542c50d4526c465d025e16a4 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Fri, 27 Dec 2024 09:51:31 +0100 Subject: [PATCH] Cleanup debug print in test --- test/test.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/test.cc b/test/test.cc index 454e5a0..8ec5385 100644 --- a/test/test.cc +++ b/test/test.cc @@ -68,9 +68,6 @@ void test_do_filter() { do_filter(candidates, wrong, green, yellow); - std::for_each(candidates.begin(), candidates.end(), - [&](auto &word) { std::cout << word << std::endl; }); - assert(candidates == std::vector{"apple"}); std::cout << "test_do_filter passed.\n"; }