Fix tests build

(cherry picked from commit 1f3ebbb23c)
This commit is contained in:
Shauren
2024-03-11 18:25:17 +01:00
committed by funjoker
parent ed11978fb8
commit b45f7583c7
2 changed files with 6 additions and 6 deletions

View File

@@ -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<int> ptr = Trinity::make_unique_trackable<int>();