From a6d172fe212f2f334e10530c7b3511784d9124d1 Mon Sep 17 00:00:00 2001 From: webchick <drupal@webchick.net> Date: Mon, 19 Jan 2015 13:15:00 -0800 Subject: [PATCH] Issue #2372899 follow-up by amateescu: HEAD BROKEN: Fix names of things --- .../system/src/Tests/Entity/EntityCacheTagsTestBase.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php b/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php index e43f03a7c6b4..36f554254ba8 100644 --- a/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php +++ b/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php @@ -280,13 +280,13 @@ public function testReferencedEntity() { $entity_type = $this->entity->getEntityTypeId(); $referencing_entity_url = $this->referencing_entity->urlInfo('canonical'); $non_referencing_entity_url = $this->non_referencing_entity->urlInfo('canonical'); - $listing_url = Url::fromRoute('entity.entity_test.list_referencing_entities', [ + $listing_url = Url::fromRoute('entity.entity_test.collection_referencing_entities', [ 'entity_reference_field_name' => $entity_type . '_reference', 'referenced_entity_type' => $entity_type, 'referenced_entity_id' => $this->entity->id(), ]); - $empty_entity_listing_url = Url::fromRoute('entity.entity_test.list_empty', ['entity_type_id' => $entity_type]); - $nonempty_entity_listing_url = Url::fromRoute('entity.entity_test.list_labels_alphabetically', ['entity_type_id' => $entity_type]); + $empty_entity_listing_url = Url::fromRoute('entity.entity_test.collection_empty', ['entity_type_id' => $entity_type]); + $nonempty_entity_listing_url = Url::fromRoute('entity.entity_test.collection_labels_alphabetically', ['entity_type_id' => $entity_type]); // Cache tags present on every rendered page. $page_cache_tags = Cache::mergeTags( -- GitLab