Whitespce normalization

No semantic change.
This commit is contained in:
Gilles Peskine 2018-06-06 15:18:02 +02:00 committed by itayzafrir
parent 2c5219a06d
commit 691dfb3e3a

View file

@ -637,7 +637,8 @@ void cipher_test_encrypt_multipart( int alg_arg, int key_type_arg,
TEST_ASSERT( psa_cipher_update( &operation, input, first_part_size,
output, output_size,
&output_length) == PSA_SUCCESS );
TEST_ASSERT( psa_cipher_update( &operation, input + first_part_size, input_size - first_part_size,
TEST_ASSERT( psa_cipher_update( &operation, input + first_part_size,
input_size - first_part_size,
output, output_size,
&output_length) == PSA_SUCCESS );
TEST_ASSERT( psa_cipher_finish( &operation, output + output_length,