From a7d1ab44cc09bf2130290a0737006142e9d2cb62 Mon Sep 17 00:00:00 2001 From: IlushaShurupov Date: Sat, 1 Jul 2023 15:32:40 +0300 Subject: [PATCH] Rename File AvlTree --- Containers/public/{AvlTree.hpp => Tree.hpp} | 0 Containers/tests/{AvlTest.cpp => TreeTest.cpp} | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename Containers/public/{AvlTree.hpp => Tree.hpp} (100%) rename Containers/tests/{AvlTest.cpp => TreeTest.cpp} (99%) diff --git a/Containers/public/AvlTree.hpp b/Containers/public/Tree.hpp similarity index 100% rename from Containers/public/AvlTree.hpp rename to Containers/public/Tree.hpp diff --git a/Containers/tests/AvlTest.cpp b/Containers/tests/TreeTest.cpp similarity index 99% rename from Containers/tests/AvlTest.cpp rename to Containers/tests/TreeTest.cpp index 0b56699..7e39bc3 100644 --- a/Containers/tests/AvlTest.cpp +++ b/Containers/tests/TreeTest.cpp @@ -1,7 +1,7 @@ #include "Tests.hpp" -#include "AvlTree.hpp" +#include "Tree.hpp" #include "Testing.hpp"