AK: Move include <AK/TestSuite.h> to the top.

clang-format automatically sorts include statements that are in a
'block'. Adding a whitespace prevents this. It is crutial that
<AK/TestSuite.h> is included first because it redefines some macros.
This commit is contained in:
asynts 2020-08-21 18:51:25 +02:00 committed by Andreas Kling
parent 39b464dcfd
commit d5999c3811
Notes: sideshowbarker 2024-07-19 03:19:29 +09:00

View File

@ -25,8 +25,9 @@
*/
#include <AK/TestSuite.h>
#include <AK/String.h>
#include <AK/CircularQueue.h>
#include <AK/String.h>
TEST_CASE(basic)
{