diff --git a/src/common/Utilities/UniqueTrackablePtr.h b/src/common/Utilities/UniqueTrackablePtr.h
index 0a09ead1eed..b3a747d4b0f 100644
--- a/src/common/Utilities/UniqueTrackablePtr.h
+++ b/src/common/Utilities/UniqueTrackablePtr.h
@@ -15,8 +15,8 @@
* with this program. If not, see .
*/
-#ifndef TRINITYCORE_UNIQUE_TRACKING_PTR_H
-#define TRINITYCORE_UNIQUE_TRACKING_PTR_H
+#ifndef TRINITYCORE_UNIQUE_TRACKABLE_PTR_H
+#define TRINITYCORE_UNIQUE_TRACKABLE_PTR_H
#include "Define.h"
#include
@@ -271,4 +271,4 @@ std::enable_if_t, unique_trackable_ptr> make_uniqu
}
}
-#endif // TRINITYCORE_UNIQUE_TRACKING_PTR_H
+#endif // TRINITYCORE_UNIQUE_TRACKABLE_PTR_H
diff --git a/tests/common/UniqueTrackablePtr.cpp b/tests/common/UniqueTrackablePtr.cpp
index 6a1db9fa277..11fdb226ba5 100644
--- a/tests/common/UniqueTrackablePtr.cpp
+++ b/tests/common/UniqueTrackablePtr.cpp
@@ -17,7 +17,7 @@
#include "tc_catch2.h"
-#include "UniqueTrackingPtr.h"
+#include "UniqueTrackablePtr.h"
struct TestObj
{
@@ -32,7 +32,7 @@ struct TestObj
bool* Deleted = nullptr;
};
-TEST_CASE("Trinity::unique_trackable_ptr frees memory", "[UniqueTrackingPtr]")
+TEST_CASE("Trinity::unique_trackable_ptr frees memory", "[UniqueTrackablePtr]")
{
bool deleted = false;
@@ -57,7 +57,7 @@ TEST_CASE("Trinity::unique_trackable_ptr frees memory", "[UniqueTrackingPtr]")
}
}
-TEST_CASE("Trinity::unique_weak_ptr", "[UniqueTrackingPtr]")
+TEST_CASE("Trinity::unique_weak_ptr", "[UniqueTrackablePtr]")
{
Trinity::unique_trackable_ptr ptr = Trinity::make_unique_trackable();