From 41af1e4d2142e5ec178ffafc8cb2bd8fdc5543d8 Mon Sep 17 00:00:00 2001 From: Alvin Philips Date: Tue, 19 Oct 2021 06:24:52 +0530 Subject: [PATCH] Renamed tests to test --- operations_on_datastructures/reverse_binary_tree.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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