diff --git a/core/modules/filter/tests/filter_test/lib/Drupal/filter_test/Plugin/Filter/FilterTestReplace.php b/core/modules/filter/tests/filter_test/lib/Drupal/filter_test/Plugin/Filter/FilterTestReplace.php index df208e2..ab1f07f 100644 --- a/core/modules/filter/tests/filter_test/lib/Drupal/filter_test/Plugin/Filter/FilterTestReplace.php +++ b/core/modules/filter/tests/filter_test/lib/Drupal/filter_test/Plugin/Filter/FilterTestReplace.php @@ -29,7 +29,7 @@ class FilterTestReplace extends FilterBase { */ public function process($text, $langcode, $cache, $cache_id) { $text = array(); - $text[] = 'Filter: ' . $this->getLabel() . ' (' . $this->getPluginID() . ')'; + $text[] = 'Filter: ' . $this->getLabel() . ' (' . $this->getPluginId() . ')'; $text[] = 'Language: ' . $langcode; $text[] = 'Cache: ' . ($cache ? 'Enabled' : 'Disabled'); if ($cache_id) {