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 faacc0742975642bc6dd84207eead8a866910524..9ae215794b3a7b3d6cd3eca7188f7375079cbe3a 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 @@ * * @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 4c2fd40b04abbee7068771fa97f99be558aac7a2..1ced7141aa28b02170c66b481a5d75b4db16e27d 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 @@ * * @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 743f3c0bd8731ba4436558f412a538b351e06f3e..35336749dbcc3802281fc88b90dcb18060452f13 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 @@ * * @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 905b57ff8e80819ecfdafb9e79ea88dbd81ec78b..0d4bb4acb5cb3283bebf3e31e62d5cc546b6f57e 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 @@ * * @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 6f85124c8c8ca315bff614a39491c68819fce184..7a83e04d777e291ae2a3ff7a4d8673740b91a4a4 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 @@ * * @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 21d511e729f4e664e5fa9fe79c4bca408c081325..eca3a681aa02b2821238829c5a697e2c02ed5324 100644 --- a/core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php @@ -35,7 +35,7 @@ public function testGetDerivativeDefinitions() { ]); $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']); }