From d5e4364db7cd67ddd6385292922f9bba7804d862 Mon Sep 17 00:00:00 2001 From: Mann Patel <46739555+manncodes@users.noreply.github.com> Date: Sun, 6 Jun 2021 10:25:39 +0530 Subject: [PATCH] Update data_structures/sparse_table.cpp Co-authored-by: David Leal --- data_structures/sparse_table.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/sparse_table.cpp b/data_structures/sparse_table.cpp index 9213b1e73..6733bc919 100644 --- a/data_structures/sparse_table.cpp +++ b/data_structures/sparse_table.cpp @@ -120,7 +120,7 @@ static void test() { assert(st.query(2, 6) == 2); ///< as 2 is smallest from 2..6 assert(st.query(3, 8) == 3); ///< as 3 is smallest from 3..8 - std::cout << "Testcase passed!" << std::endl; + std::cout << "Self-test implementations passed!" << std::endl; } /**