From 076e1f01624c060fa61b9941230a0ca463a4473e Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Thu, 11 Dec 2025 16:01:20 +0000 Subject: [PATCH] Tests: Correct include in TestMLDSA This doesn't need LibWeb, it just needs LibCrypto. The previous include would transitively include what was needed, but also included `LibWeb/Bindings/SubtleCryptoPrototype.h` which might not exist yet. This could break the build on CI randomly. --- Tests/LibCrypto/TestMLDSA.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LibCrypto/TestMLDSA.cpp b/Tests/LibCrypto/TestMLDSA.cpp index 9020ad2d96..0771670273 100644 --- a/Tests/LibCrypto/TestMLDSA.cpp +++ b/Tests/LibCrypto/TestMLDSA.cpp @@ -4,8 +4,8 @@ * SPDX-License-Identifier: BSD-2-Clause */ +#include #include -#include TEST_CASE(KEY_GENERATION_WITH_SEED) {