Fix typos in ECP test suite
diff --git a/tests/suites/test_suite_ecp.function b/tests/suites/test_suite_ecp.function
index 49ab870..40a037e 100644
--- a/tests/suites/test_suite_ecp.function
+++ b/tests/suites/test_suite_ecp.function
@@ -16,7 +16,7 @@
 /* BEGIN_CASE */
 void ecp_valid_param( )
 {
-    TEST_VALID_PARAM( mbedtls_ecp_point_free( NULL ) );
+    TEST_VALID_PARAM( mbedtls_ecp_group_free( NULL ) );
     TEST_VALID_PARAM( mbedtls_ecp_keypair_free( NULL ) );
     TEST_VALID_PARAM( mbedtls_ecp_point_free( NULL ) );
 
@@ -46,7 +46,7 @@
 
     TEST_INVALID_PARAM( mbedtls_ecp_point_init( NULL ) );
     TEST_INVALID_PARAM( mbedtls_ecp_keypair_init( NULL ) );
-    TEST_INVALID_PARAM( mbedtls_ecp_point_init( NULL ) );
+    TEST_INVALID_PARAM( mbedtls_ecp_group_init( NULL ) );
 
 #if defined(MBEDTLS_ECP_RESTARTABLE)
     TEST_INVALID_PARAM( mbedtls_ecp_restart_init( NULL ) );