Style and language fixes

Signed-off-by: Steven Cooreman <steven.cooreman@silabs.com>
diff --git a/tests/suites/test_suite_psa_crypto.function b/tests/suites/test_suite_psa_crypto.function
index e392ecc..e75d651 100644
--- a/tests/suites/test_suite_psa_crypto.function
+++ b/tests/suites/test_suite_psa_crypto.function
@@ -3349,7 +3349,7 @@
 
     if( iv->len > 0 )
     {
-      PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
+        PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
     }
 
     output_buffer_size = ( (size_t) input->len +
@@ -3416,7 +3416,7 @@
 
     if( iv->len > 0 )
     {
-      PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
+        PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
     }
 
     output_buffer_size = ( (size_t) input->len +
@@ -3488,7 +3488,7 @@
                                           handle, alg ) );
 
     if( iv->len > 0 ) {
-      PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
+        PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
     }
 
     output_buffer_size = ( (size_t) input->len +
@@ -3557,7 +3557,7 @@
                                           handle, alg ) );
 
     if( iv->len > 0 ) {
-      PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
+        PSA_ASSERT( psa_cipher_set_iv( &operation, iv->x, iv->len ) );
     }
 
     output_buffer_size = ( (size_t) input->len +
@@ -3626,9 +3626,9 @@
                                           handle, alg ) );
 
     if( alg != PSA_ALG_ECB_NO_PADDING ) {
-      PSA_ASSERT( psa_cipher_generate_iv( &operation1,
-                                          iv, iv_size,
-                                          &iv_length ) );
+        PSA_ASSERT( psa_cipher_generate_iv( &operation1,
+                                            iv, iv_size,
+                                            &iv_length ) );
     }
     output1_size = ( (size_t) input->len +
                      PSA_BLOCK_CIPHER_BLOCK_SIZE( key_type ) );
@@ -3650,8 +3650,8 @@
     ASSERT_ALLOC( output2, output2_size );
 
     if( iv_length > 0 ) {
-      PSA_ASSERT( psa_cipher_set_iv( &operation2,
-                                     iv, iv_length ) );
+        PSA_ASSERT( psa_cipher_set_iv( &operation2,
+                                       iv, iv_length ) );
     }
 
     PSA_ASSERT( psa_cipher_update( &operation2, output1, output1_length,
@@ -3716,9 +3716,9 @@
                                           handle, alg ) );
 
     if( alg != PSA_ALG_ECB_NO_PADDING ) {
-      PSA_ASSERT( psa_cipher_generate_iv( &operation1,
-                                          iv, iv_size,
-                                          &iv_length ) );
+        PSA_ASSERT( psa_cipher_generate_iv( &operation1,
+                                            iv, iv_size,
+                                            &iv_length ) );
     }
 
     output1_buffer_size = ( (size_t) input->len +
@@ -3751,8 +3751,8 @@
     ASSERT_ALLOC( output2, output2_buffer_size );
 
     if( iv_length > 0 ) {
-      PSA_ASSERT( psa_cipher_set_iv( &operation2,
-                                     iv, iv_length ) );
+        PSA_ASSERT( psa_cipher_set_iv( &operation2,
+                                       iv, iv_length ) );
     }
 
     PSA_ASSERT( psa_cipher_update( &operation2, output1, first_part_size,