tests: driver wrappers: Improve test comments
Signed-off-by: Ronald Cron <ronald.cron@arm.com>
diff --git a/tests/suites/test_suite_psa_crypto_driver_wrappers.function b/tests/suites/test_suite_psa_crypto_driver_wrappers.function
index 8969e22..503cdcd 100644
--- a/tests/suites/test_suite_psa_crypto_driver_wrappers.function
+++ b/tests/suites/test_suite_psa_crypto_driver_wrappers.function
@@ -1168,7 +1168,7 @@
PSA_ASSERT( psa_crypto_init( ) );
/*
- * Update none active operation, the driver shouldn't be called.
+ * Update inactive operation, the driver shouldn't be called.
*/
TEST_EQUAL( psa_hash_update( &operation, input->x, input->len ),
PSA_ERROR_BAD_STATE );
@@ -1224,7 +1224,7 @@
PSA_ASSERT( psa_crypto_init( ) );
/*
- * Finish none active operation, the driver shouldn't be called.
+ * Finish inactive operation, the driver shouldn't be called.
*/
TEST_EQUAL( psa_hash_finish( &operation, output, PSA_HASH_LENGTH( alg ),
&output_length ),
@@ -1277,7 +1277,7 @@
PSA_ASSERT( psa_crypto_init( ) );
/*
- * Clone none active operation, the driver shouldn't be called.
+ * Clone inactive operation, the driver shouldn't be called.
*/
TEST_EQUAL( psa_hash_clone( &source_operation, &target_operation ),
PSA_ERROR_BAD_STATE );