diff --git a/test/List.cpp b/test/List.cpp index e44217c..767abd7 100644 --- a/test/List.cpp +++ b/test/List.cpp @@ -1,5 +1,5 @@ -#include "Test.hpp" #include "List.hpp" +#include "Test.hpp" struct TestListNode : TSLinkedNode { uint32_t index = 0; @@ -21,6 +21,6 @@ TEST_CASE("TSList::LinkToHead", "[list]") { REQUIRE(list.Head() == node); - delete(node); + delete node; } } diff --git a/test/Memory.cpp b/test/Memory.cpp index 7efbbe0..3b9f3d8 100644 --- a/test/Memory.cpp +++ b/test/Memory.cpp @@ -1,5 +1,5 @@ -#include "Test.hpp" #include "Memory.hpp" +#include "Test.hpp" TEST_CASE("SMemAlloc", "[memory]") { SECTION("allocates memory") {