Fix test_suite_dhm build
Fix build as the name of the random function changed from development to 2.7.
Signed-off-by: Chris Jones <christopher.jones@arm.com>
diff --git a/tests/suites/test_suite_dhm.function b/tests/suites/test_suite_dhm.function
index f4a992c..6ec1e7e8 100644
--- a/tests/suites/test_suite_dhm.function
+++ b/tests/suites/test_suite_dhm.function
@@ -226,7 +226,7 @@
TEST_ASSERT( mbedtls_dhm_set_group( &ctx, &P, &G ) == 0 );
TEST_ASSERT( mbedtls_dhm_make_public( &ctx, (int) mbedtls_mpi_size( &P ),
output, sizeof(output),
- &mbedtls_test_rnd_pseudo_rand,
+ &rnd_pseudo_rand,
NULL ) == result );
exit: