Cleanup debug print in test
All checks were successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
Imbus 2024-12-27 09:51:31 +01:00
parent 8bbe5591c3
commit 06078006f6

View file

@ -68,9 +68,6 @@ void test_do_filter() {
do_filter(candidates, wrong, green, yellow); do_filter(candidates, wrong, green, yellow);
std::for_each(candidates.begin(), candidates.end(),
[&](auto &word) { std::cout << word << std::endl; });
assert(candidates == std::vector<std::string>{"apple"}); assert(candidates == std::vector<std::string>{"apple"});
std::cout << "test_do_filter passed.\n"; std::cout << "test_do_filter passed.\n";
} }