diff --git a/operations_on_datastructures/reverse_binary_tree.cpp b/operations_on_datastructures/reverse_binary_tree.cpp index a2c3d4b25..475f9afa9 100644 --- a/operations_on_datastructures/reverse_binary_tree.cpp +++ b/operations_on_datastructures/reverse_binary_tree.cpp @@ -166,12 +166,12 @@ void test2() { } } // namespace tests -static void tests() { +static void test() { tests::test1(); tests::test2(); } int main() { - tests(); + test(); return 0; } \ No newline at end of file