diff --git a/src/hack/comparators/comparators.hpp b/src/hack/comparators/comparators.hpp index fe6d06f..003bf3d 100644 --- a/src/hack/comparators/comparators.hpp +++ b/src/hack/comparators/comparators.hpp @@ -121,11 +121,7 @@ namespace hack::comparators res.m_is_equal = (res.m_mismatch_count == 0); // Финальный отчет - if (res.m_is_equal) - { - hack::log()("TRUE"); - } - else + if (!res.m_is_equal) { hack::log()("FALSE:", res.m_mismatch_count, "mismatches out of", target_size, "elements (", (100.0f * res.m_mismatch_count / target_size), "%)");