summaryrefslogtreecommitdiff
path: root/Tests/AK
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2023-01-02 15:15:14 +0100
committerTim Flynn <trflynn89@pm.me>2023-01-02 11:06:15 -0500
commitb83cb09db194f0e18ef76f36aea3801959295f22 (patch)
tree00ccdbb2c1e7766326cc2c3442f3de95cf1c0b8a /Tests/AK
parent9d61e59cebbbb1d4fc91d534cceb1316faf44e0b (diff)
downloadserenity-b83cb09db194f0e18ef76f36aea3801959295f22.zip
Everywhere: Fix badly-formatted includes
In 7c5e30daaa615ad3a2ef55222423a747ac0a1227, the focus was "only" on Userland/Libraries/, whereas this commit cleans up the remaining headers in the repo, and any new badly-formatted include.
Diffstat (limited to 'Tests/AK')
-rw-r--r--Tests/AK/TestVector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/AK/TestVector.cpp b/Tests/AK/TestVector.cpp
index b7c778d746..8444c317e6 100644
--- a/Tests/AK/TestVector.cpp
+++ b/Tests/AK/TestVector.cpp
@@ -4,12 +4,12 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
-#include "AK/ReverseIterator.h"
#include <LibTest/TestCase.h>
#include <AK/DeprecatedString.h>
#include <AK/NonnullOwnPtrVector.h>
#include <AK/OwnPtr.h>
+#include <AK/ReverseIterator.h>
#include <AK/Vector.h>
TEST_CASE(construct)