Fix entropy_calls when MBEDTLS_ENTROPY_NV_SEED is enabled
diff --git a/tests/suites/test_suite_entropy.function b/tests/suites/test_suite_entropy.function
index d1d88c5..1a4fefd 100644
--- a/tests/suites/test_suite_entropy.function
+++ b/tests/suites/test_suite_entropy.function
@@ -271,7 +271,8 @@
     {
         TEST_ASSERT( ret == 0 );
 #if defined(MBEDTLS_ENTROPY_NV_SEED)
-        // Two times as much calls due to the NV seed update
+        /* If the NV seed functionality is enabled, there are two entropy
+         * updates: before and after updating the NV seed. */
         result *= 2;
 #endif
         TEST_ASSERT( dummy.calls == (size_t) result );
@@ -317,6 +318,11 @@
     if( result >= 0 )
     {
         TEST_ASSERT( ret == 0 );
+#if defined(MBEDTLS_ENTROPY_NV_SEED)
+        /* If the NV seed functionality is enabled, there are two entropy
+         * updates: before and after updating the NV seed. */
+        result *= 2;
+#endif
         TEST_ASSERT( dummy1.calls == (size_t) result );
     }
     else