diff --git a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestFieldMethods.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestFieldMethods.php index faacc074297..9ae215794b3 100644 --- a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestFieldMethods.php +++ b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestFieldMethods.php @@ -10,7 +10,7 @@ use Drupal\Core\Field\BaseFieldDefinition; * * @ContentEntityType( * id = "entity_test_field_methods", - * label = @Translation("Test entity - data table"), + * label = @Translation("Test entity - field methods and data table"), * handlers = { * "view_builder" = "Drupal\entity_test\EntityTestViewBuilder", * "access" = "Drupal\entity_test\EntityTestAccessControlHandler", diff --git a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulChanged.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulChanged.php index 4c2fd40b04a..1ced7141aa2 100644 --- a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulChanged.php +++ b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulChanged.php @@ -12,7 +12,7 @@ use Drupal\Core\Field\BaseFieldDefinition; * * @ContentEntityType( * id = "entity_test_mul_changed", - * label = @Translation("Test entity - data table"), + * label = @Translation("Test entity - multiple changed and data table"), * handlers = { * "view_builder" = "Drupal\entity_test\EntityTestViewBuilder", * "access" = "Drupal\entity_test\EntityTestAccessControlHandler", diff --git a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulDefaultValue.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulDefaultValue.php index 743f3c0bd87..35336749dbc 100644 --- a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulDefaultValue.php +++ b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulDefaultValue.php @@ -10,7 +10,7 @@ use Drupal\Core\Field\BaseFieldDefinition; * * @ContentEntityType( * id = "entity_test_mul_default_value", - * label = @Translation("Test entity - data table"), + * label = @Translation("Test entity - multiple default value and data table"), * handlers = { * "view_builder" = "Drupal\entity_test\EntityTestViewBuilder", * "access" = "Drupal\entity_test\EntityTestAccessControlHandler", diff --git a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulRev.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulRev.php index 905b57ff8e8..0d4bb4acb5c 100644 --- a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulRev.php +++ b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulRev.php @@ -10,7 +10,7 @@ use Drupal\Core\Field\BaseFieldDefinition; * * @ContentEntityType( * id = "entity_test_mulrev", - * label = @Translation("Test entity - revisions and data table"), + * label = @Translation("Test entity - mul revisions and data table"), * handlers = { * "view_builder" = "Drupal\entity_test\EntityTestViewBuilder", * "access" = "Drupal\entity_test\EntityTestAccessControlHandler", diff --git a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulRevChanged.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulRevChanged.php index 6f85124c8c8..7a83e04d777 100644 --- a/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulRevChanged.php +++ b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulRevChanged.php @@ -10,7 +10,7 @@ use Drupal\Core\Field\BaseFieldDefinition; * * @ContentEntityType( * id = "entity_test_mulrev_changed", - * label = @Translation("Test entity - revisions and data table"), + * label = @Translation("Test entity - mul changed revisions and data table"), * handlers = { * "view_builder" = "Drupal\entity_test\EntityTestViewBuilder", * "access" = "Drupal\entity_test\EntityTestAccessControlHandler", diff --git a/core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php b/core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php index 21d511e729f..eca3a681aa0 100644 --- a/core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php @@ -35,7 +35,7 @@ class SaveActionTest extends KernelTestBase { ]); $this->assertEquals([ 'type' => 'entity_test_mul_changed', - 'label' => 'Save test entity - data table', + 'label' => 'Save test entity - multiple changed and data table', 'action_label' => 'Save', ], $definitions['entity_test_mul_changed']); }