diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-07-31 03:53:13 -0700 |
---|---|---|
committer | Gunnar Beutner <gunnar@beutner.name> | 2021-08-01 08:10:16 +0200 |
commit | d1644c26d63f072000bb1dfd0c1d15369bf58b4c (patch) | |
tree | 73bb1f6ab0eeaad7f5e5e2bc73f9a719eb715d94 /Tests/AK | |
parent | a4c37d49a01861d75ced39f572e1ae9b3dba8464 (diff) | |
download | serenity-d1644c26d63f072000bb1dfd0c1d15369bf58b4c.zip |
Tests: Remove unused header includes
Diffstat (limited to 'Tests/AK')
-rw-r--r-- | Tests/AK/TestBase64.cpp | 1 | ||||
-rw-r--r-- | Tests/AK/TestFind.cpp | 1 | ||||
-rw-r--r-- | Tests/AK/TestJSON.cpp | 1 | ||||
-rw-r--r-- | Tests/AK/TestQuickSort.cpp | 1 | ||||
-rw-r--r-- | Tests/AK/TestUFixedBigInt.cpp | 2 |
5 files changed, 0 insertions, 6 deletions
diff --git a/Tests/AK/TestBase64.cpp b/Tests/AK/TestBase64.cpp index 698a86c354..3e4baa372b 100644 --- a/Tests/AK/TestBase64.cpp +++ b/Tests/AK/TestBase64.cpp @@ -7,7 +7,6 @@ #include <LibTest/TestCase.h> #include <AK/Base64.h> -#include <AK/ByteBuffer.h> #include <AK/String.h> #include <string.h> diff --git a/Tests/AK/TestFind.cpp b/Tests/AK/TestFind.cpp index 26d4ab11fd..bee248d799 100644 --- a/Tests/AK/TestFind.cpp +++ b/Tests/AK/TestFind.cpp @@ -8,7 +8,6 @@ #include <AK/Array.h> #include <AK/Find.h> -#include <AK/Vector.h> TEST_CASE(should_return_end_if_not_in_container) { diff --git a/Tests/AK/TestJSON.cpp b/Tests/AK/TestJSON.cpp index 7f8da710c0..0bc42167b6 100644 --- a/Tests/AK/TestJSON.cpp +++ b/Tests/AK/TestJSON.cpp @@ -7,7 +7,6 @@ #include <LibTest/TestCase.h> #include <AK/HashMap.h> -#include <AK/JsonArray.h> #include <AK/JsonObject.h> #include <AK/JsonValue.h> #include <AK/String.h> diff --git a/Tests/AK/TestQuickSort.cpp b/Tests/AK/TestQuickSort.cpp index 23fc7692dc..12cbf18c7f 100644 --- a/Tests/AK/TestQuickSort.cpp +++ b/Tests/AK/TestQuickSort.cpp @@ -6,7 +6,6 @@ #include <LibTest/TestCase.h> -#include <AK/Checked.h> #include <AK/Noncopyable.h> #include <AK/QuickSort.h> #include <AK/StdLibExtras.h> diff --git a/Tests/AK/TestUFixedBigInt.cpp b/Tests/AK/TestUFixedBigInt.cpp index 76ed5c6e0a..258beb06bf 100644 --- a/Tests/AK/TestUFixedBigInt.cpp +++ b/Tests/AK/TestUFixedBigInt.cpp @@ -11,8 +11,6 @@ #include <AK/Random.h> #include <AK/UFixedBigInt.h> -#include <time.h> - constexpr int test_iterations = 32; TEST_CASE(one_plus_one) |