From 27069c6be6a4b714b7e9031c2a7740a33a4d4454 Mon Sep 17 00:00:00 2001 From: Minos Galanakis Date: Tue, 10 Mar 2026 15:39:52 +0000 Subject: [PATCH] test_suite_ccm.function: Fixed typo in docs Signed-off-by: Minos Galanakis --- tests/suites/test_suite_ccm.function | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/suites/test_suite_ccm.function b/tests/suites/test_suite_ccm.function index cf54d2d591..5bd2c34493 100644 --- a/tests/suites/test_suite_ccm.function +++ b/tests/suites/test_suite_ccm.function @@ -923,7 +923,7 @@ void mbedtls_ccm_finish_boundary(int cipher_id, int mode, TEST_EQUAL(0, mbedtls_ccm_starts(&ctx, mode, iv->x, iv->len)); /* Use the caller-provided tag length during setup, then finish with a - * different tag length to exercise boundary handling/API complianece */ + * different tag length to exercise boundary handling/API compliance */ TEST_EQUAL(0, mbedtls_ccm_set_lengths(&ctx, 0, 0, (size_t) start_tag_len)); TEST_CALLOC(tag, finish_tag_len);