chore(format): reformat test suites

This commit is contained in:
fallenoak 2020-09-16 23:12:09 -05:00
parent ced42bbfed
commit 7c6521a547
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
#include "Test.hpp"
#include "List.hpp"
#include "Test.hpp"
struct TestListNode : TSLinkedNode<TestListNode> {
uint32_t index = 0;
@ -21,6 +21,6 @@ TEST_CASE("TSList::LinkToHead", "[list]") {
REQUIRE(list.Head() == node);
delete(node);
delete node;
}
}