X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fmigrate%2Ftests%2Fsrc%2FUnit%2Fprocess%2FDedupeEntityTest.php;h=7b21eff351883e200ee9ff01c8a629bc0c701ded;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hp=a5daa7203207b57bd124bbc12fe46b8b910b24d5;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/modules/migrate/tests/src/Unit/process/DedupeEntityTest.php b/web/core/modules/migrate/tests/src/Unit/process/DedupeEntityTest.php index a5daa7203..7b21eff35 100644 --- a/web/core/modules/migrate/tests/src/Unit/process/DedupeEntityTest.php +++ b/web/core/modules/migrate/tests/src/Unit/process/DedupeEntityTest.php @@ -2,9 +2,6 @@ namespace Drupal\Tests\migrate\Unit\process; -@trigger_error('The ' . __NAMESPACE__ . '\DedupeEntityTest is deprecated in -Drupal 8.4.0 and will be removed before Drupal 9.0.0. Instead, use ' . __NAMESPACE__ . '\MakeUniqueEntityFieldTest', E_USER_DEPRECATED); - use Drupal\Core\Entity\EntityStorageInterface; use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\Entity\Query\QueryInterface; @@ -14,14 +11,14 @@ use Drupal\Component\Utility\Unicode; /** * @coversDefaultClass \Drupal\migrate\Plugin\migrate\process\DedupeEntity * @group migrate + * @group legacy */ class DedupeEntityTest extends MigrateProcessTestCase { /** * The mock entity query. * - * @var \Drupal\Core\Entity\Query\QueryInterface - * @var \Drupal\Core\Entity\Query\QueryFactory + * @var \Drupal\Core\Entity\Query\QueryInterface|\Drupal\Core\Entity\Query\QueryFactory */ protected $entityQuery; @@ -168,7 +165,9 @@ class DedupeEntityTest extends MigrateProcessTestCase { ->will($this->returnValue($this->entityQuery)); $this->entityQuery->expects($this->exactly($count + 1)) ->method('execute') - ->will($this->returnCallback(function () use (&$count) { return $count--;})); + ->will($this->returnCallback(function () use (&$count) { + return $count--; + })); } /**