test: use better naming for new components

Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh
index 97c3dc6..c538cf3 100755
--- a/tests/scripts/all.sh
+++ b/tests/scripts/all.sh
@@ -2631,7 +2631,7 @@
 # enabled, but one. Input arguments are as follows:
 # - $1 is the key type under test, i.e. ECC/RSA/DH
 # - $2 is the key option to be unset (i.e. generate, derive, etc)
-config_test_psa_want_key_pair_partial() {
+build_and_test_psa_want_key_pair_partial() {
     KEY_TYPE=$1
     UNSET_OPTION=$2
 
@@ -2666,11 +2666,11 @@
 }
 
 component_test_psa_ecc_key_pair_no_derive() {
-    config_test_psa_want_key_pair_partial "ECC" "DERIVE"
+    build_and_test_psa_want_key_pair_partial "ECC" "DERIVE"
 }
 
 component_test_psa_ecc_key_pair_no_generate() {
-    config_test_psa_want_key_pair_partial "ECC" "GENERATE"
+    build_and_test_psa_want_key_pair_partial "ECC" "GENERATE"
 }
 
 component_test_psa_crypto_config_accel_rsa_signature () {