tests: Reformating due to *hexify functions renaming
Command to find the files in which lines have gone
larger than 79 characters due to the renaming:
grep '.\{80\}' \
`git diff-tree --no-commit-id --name-only -r HEAD` \
| grep hexify
Signed-off-by: Ronald Cron <ronald.cron@arm.com>
diff --git a/tests/suites/test_suite_hkdf.function b/tests/suites/test_suite_hkdf.function
index c08d8f3..9781e7f 100644
--- a/tests/suites/test_suite_hkdf.function
+++ b/tests/suites/test_suite_hkdf.function
@@ -37,7 +37,10 @@
okm_len);
TEST_ASSERT( ret == 0 );
- // Run mbedtls_test_hexify on it so that it looks nicer if the assertion fails
+ /*
+ * Run mbedtls_test_hexify on it so that it looks nicer if the assertion
+ * fails.
+ */
mbedtls_test_hexify( okm_hex, okm, okm_len );
TEST_ASSERT( !strcmp( (char *)okm_hex, hex_okm_string ) );
}