diff --git a/core/tests/Drupal/FunctionalTests/Update/UpdatePathTestBase.php b/core/tests/Drupal/FunctionalTests/Update/UpdatePathTestBase.php
index d7d84708fe9f26ef73719b72acf7c3b341f92467..8e192d4c54147d0e9bb6c4c47feb63553f8b9b21 100644
--- a/core/tests/Drupal/FunctionalTests/Update/UpdatePathTestBase.php
+++ b/core/tests/Drupal/FunctionalTests/Update/UpdatePathTestBase.php
@@ -375,10 +375,10 @@ protected function runUpdates() {
       // Ensure that the update hooks updated all entity schema.
       $needs_updates = \Drupal::entityDefinitionUpdateManager()->needsUpdates();
       if ($needs_updates) {
-        foreach (\Drupal::entityDefinitionUpdateManager()
-          ->getChangeSummary() as $entity_type_id => $summary) {
+        foreach (\Drupal::entityDefinitionUpdateManager()->getChangeSummary() as $entity_type_id => $summary) {
+          $entity_type_label = \Drupal::entityTypeManager()->getDefinition($entity_type_id)->getLabel();
           foreach ($summary as $message) {
-            $this->fail($message);
+            $this->fail("$entity_type_label: $message");
           }
         }
         // The above calls to `fail()` should prevent this from ever being