From da36c9f2ce4fffddc99cc5178912e62049ec59a7 Mon Sep 17 00:00:00 2001 From: Joe Subbiani Date: Fri, 9 Jul 2021 12:03:06 +0100 Subject: [PATCH] Improve Code Style add space between bracket and a newline that had occured through changes but do not match the original file style Signed-off-by: Joe Subbiani --- tests/suites/test_suite_psa_crypto_metadata.function | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/suites/test_suite_psa_crypto_metadata.function b/tests/suites/test_suite_psa_crypto_metadata.function index 2722aea4c..f2dcfca2d 100644 --- a/tests/suites/test_suite_psa_crypto_metadata.function +++ b/tests/suites/test_suite_psa_crypto_metadata.function @@ -619,7 +619,7 @@ void key_type( int type_arg, int classification_flags ) /* END_CASE */ /* BEGIN_CASE */ -void block_cipher_key_type( int type_arg, int block_size_arg) +void block_cipher_key_type( int type_arg, int block_size_arg ) { psa_key_type_t type = type_arg; size_t block_size = block_size_arg; @@ -628,7 +628,6 @@ void block_cipher_key_type( int type_arg, int block_size_arg) TEST_EQUAL( type & PSA_KEY_TYPE_CATEGORY_MASK, PSA_KEY_TYPE_CATEGORY_SYMMETRIC ); - TEST_EQUAL( PSA_BLOCK_CIPHER_BLOCK_LENGTH( type ), block_size ); /* PSA_ROUND_UP_TO_MULTIPLE(block_size, length) in crypto_sizes.h