From 5ccdc556b1d40dd1deb9a688bf6aaffe0a621656 Mon Sep 17 00:00:00 2001 From: Joe Subbiani Date: Thu, 15 Jul 2021 09:03:51 +0100 Subject: [PATCH] Remove trailing whitespace Signed-off-by: Joe Subbiani --- tests/suites/test_suite_psa_crypto_metadata.function | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/suites/test_suite_psa_crypto_metadata.function b/tests/suites/test_suite_psa_crypto_metadata.function index 1db3ca6e3..9f4fc7549 100644 --- a/tests/suites/test_suite_psa_crypto_metadata.function +++ b/tests/suites/test_suite_psa_crypto_metadata.function @@ -630,7 +630,7 @@ void block_cipher_key_type( int type_arg, int block_size_arg ) PSA_KEY_TYPE_CATEGORY_SYMMETRIC ); TEST_EQUAL( PSA_BLOCK_CIPHER_BLOCK_LENGTH( type ), block_size ); - /* Check that the block size is a power of 2. This is required, at least, + /* Check that the block size is a power of 2. This is required, at least, for PSA_ROUND_UP_TO_MULTIPLE(block_size, length) in crypto_sizes.h. */ TEST_ASSERT( ( ( block_size - 1 ) & block_size ) == 0 ); }