From 7c6521a5479416cf52b18583cd73662c581b803e Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 16 Sep 2020 23:12:09 -0500 Subject: [PATCH] chore(format): reformat test suites --- test/List.cpp | 4 ++-- test/Memory.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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") {