From b791a88c33a66cb8a03d816cb59a1a9228a11e45 Mon Sep 17 00:00:00 2001 From: Harry Ramsey Date: Mon, 21 Oct 2024 12:05:20 +0100 Subject: [PATCH] Fix test case dependency This commit fixes the error test suite to depend on MBEDTLS_ERROR_C rather than MBEDTLS_ERRORCOMMON_C. Signed-off-by: Harry Ramsey --- tests/suites/test_suite_error.function | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/suites/test_suite_error.function b/tests/suites/test_suite_error.function index 2c17463b3b..4c38ab05f2 100644 --- a/tests/suites/test_suite_error.function +++ b/tests/suites/test_suite_error.function @@ -1,9 +1,9 @@ /* BEGIN_HEADER */ -#include "mbedtls/error_common.h" +#include "mbedtls/error.h" /* END_HEADER */ /* BEGIN_DEPENDENCIES - * depends_on:MBEDTLS_ERRORCOMMON_C + * depends_on:MBEDTLS_ERROR_C * END_DEPENDENCIES */