remove extra spaces

Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
diff --git a/tests/suites/test_suite_platform.function b/tests/suites/test_suite_platform.function
index d5d4cdf..cf0a785 100644
--- a/tests/suites/test_suite_platform.function
+++ b/tests/suites/test_suite_platform.function
@@ -43,7 +43,7 @@
 /* BEGIN_CASE depends_on:MBEDTLS_HAVE_TIME */
 void time_get_milliseconds()
 {
-    mbedtls_ms_time_t  current = mbedtls_ms_time();
+    mbedtls_ms_time_t current = mbedtls_ms_time();
     (void) current;
     /* This goto is added to avoid warnings from the generated code. */
     goto exit;
@@ -53,7 +53,7 @@
 /* BEGIN_CASE depends_on:MBEDTLS_HAVE_TIME */
 void time_get_seconds()
 {
-    mbedtls_time_t  current = mbedtls_time(NULL);
+    mbedtls_time_t current = mbedtls_time(NULL);
     (void) current;
     /* This goto is added to avoid warnings from the generated code. */
     goto exit;
@@ -63,8 +63,8 @@
 /* BEGIN_CASE depends_on:MBEDTLS_HAVE_TIME */
 void time_delay_milliseconds(int delay_ms)
 {
-    mbedtls_ms_time_t  current = mbedtls_ms_time();
-    mbedtls_ms_time_t  elapsed_ms;
+    mbedtls_ms_time_t current = mbedtls_ms_time();
+    mbedtls_ms_time_t elapsed_ms;
 
     sleep_ms(delay_ms);
 
@@ -78,8 +78,8 @@
 /* BEGIN_CASE depends_on:MBEDTLS_HAVE_TIME */
 void time_delay_seconds(int delay_secs)
 {
-    mbedtls_time_t  current = mbedtls_time(NULL);
-    mbedtls_time_t  elapsed_secs;
+    mbedtls_time_t current = mbedtls_time(NULL);
+    mbedtls_time_t elapsed_secs;
 
     sleep_ms(delay_secs * 1000);