diff --git a/core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTid.php b/core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTid.php index b18a46f590..930bbca4ad 100644 --- a/core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTid.php +++ b/core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTid.php @@ -77,7 +77,7 @@ public function __construct(array $configuration, $plugin_id, $plugin_definition $this->currentUser = $current_user; if ($this->entityRepository === NULL) { $this->entityRepository = \Drupal::service('entity.repository'); - @trigger_error('Calling ' . __METHOD__ . '() without the $entityRepository argument is deprecated in drupal:10.1.0 and is required in drupal:11.0.0. See https://www.drupal.org/node/TODO', E_USER_DEPRECATED); + @trigger_error('Calling ' . __METHOD__ . '() without the $entityRepository argument is deprecated in drupal:10.1.0 and is required in drupal:11.0.0. See https://www.drupal.org/node/3162414', E_USER_DEPRECATED); } } diff --git a/core/modules/taxonomy/tests/src/Functional/Update/TaxonomyTermIdFilterUpdateTest.php b/core/modules/taxonomy/tests/src/Functional/Update/TaxonomyTermIdFilterUpdateTest.php index 3d5058ddaa..ccfe8c082a 100644 --- a/core/modules/taxonomy/tests/src/Functional/Update/TaxonomyTermIdFilterUpdateTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Update/TaxonomyTermIdFilterUpdateTest.php @@ -15,6 +15,18 @@ */ class TaxonomyTermIdFilterUpdateTest extends UpdatePathTestBase { + /** + * {@inheritdoc} + */ + protected static $modules = ['taxonomy', 'views']; + + /** + * {@inheritdoc} + */ + protected function getConfigSchemaExclusions() { + return ['views.view.test_filter_taxonomy_index_tid']; + } + /** * {@inheritdoc} */