summaryrefslogtreecommitdiff
path: root/AK/TestSuite.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-09-06 15:34:26 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-09-06 15:36:54 +0200
commit73fdbba59c6b91a0ef1789d3f37b703215ea7cef (patch)
tree446525a58ccef2c66a10b15539aa984163c82cff /AK/TestSuite.h
parentb4a2bb9383d2d376a603ff33105b0af5eb0cd0b1 (diff)
downloadserenity-73fdbba59c6b91a0ef1789d3f37b703215ea7cef.zip
AK: Rename <AK/AKString.h> to <AK/String.h>
This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
Diffstat (limited to 'AK/TestSuite.h')
-rw-r--r--AK/TestSuite.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/AK/TestSuite.h b/AK/TestSuite.h
index 47b9ef58ae..478b18b652 100644
--- a/AK/TestSuite.h
+++ b/AK/TestSuite.h
@@ -12,9 +12,9 @@
#define ASSERT_NOT_REACHED() fprintf(stderr, "\033[31;1mASSERT_NOT_REACHED\033[0m\n");
#define RELEASE_ASSERT ASSERT
-#include "AKString.h"
-#include "Function.h"
-#include "NonnullRefPtrVector.h"
+#include <AK/Function.h>
+#include <AK/NonnullRefPtrVector.h>
+#include <AK/String.h>
#include <chrono>
namespace AK {