Issue #2971338 by Jo Fitzgerald, quietone, joachim: MigrationLookupTest::testMultipleSourceIds() uses wrong class for mocking
parent
58d601eb0a
commit
6a8fe61275
|
@ -4,6 +4,7 @@ namespace Drupal\Tests\migrate\Unit\process;
|
||||||
|
|
||||||
use Drupal\Core\Entity\EntityStorageInterface;
|
use Drupal\Core\Entity\EntityStorageInterface;
|
||||||
use Drupal\migrate\MigrateSkipProcessException;
|
use Drupal\migrate\MigrateSkipProcessException;
|
||||||
|
use Drupal\migrate\Plugin\migrate\process\Get;
|
||||||
use Drupal\migrate\Plugin\MigrationInterface;
|
use Drupal\migrate\Plugin\MigrationInterface;
|
||||||
use Drupal\migrate\Plugin\migrate\process\MigrationLookup;
|
use Drupal\migrate\Plugin\migrate\process\MigrationLookup;
|
||||||
use Drupal\migrate\Plugin\MigrateDestinationInterface;
|
use Drupal\migrate\Plugin\MigrateDestinationInterface;
|
||||||
|
@ -249,7 +250,7 @@ class MigrationLookupTest extends MigrateProcessTestCase {
|
||||||
$migration_plugin_manager = $this->prophesize(MigrationPluginManagerInterface::class);
|
$migration_plugin_manager = $this->prophesize(MigrationPluginManagerInterface::class);
|
||||||
$process_plugin_manager = $this->prophesize(MigratePluginManager::class);
|
$process_plugin_manager = $this->prophesize(MigratePluginManager::class);
|
||||||
$foobaz_migration = $this->prophesize(MigrationInterface::class);
|
$foobaz_migration = $this->prophesize(MigrationInterface::class);
|
||||||
$get_migration = $this->prophesize(MigrationLookup::class);
|
$get_migration = $this->prophesize(Get::class);
|
||||||
$id_map = $this->prophesize(MigrateIdMapInterface::class);
|
$id_map = $this->prophesize(MigrateIdMapInterface::class);
|
||||||
$destination_plugin = $this->prophesize(MigrateDestinationInterface::class);
|
$destination_plugin = $this->prophesize(MigrateDestinationInterface::class);
|
||||||
$source_plugin = $this->prophesize(MigrateSourceInterface::class);
|
$source_plugin = $this->prophesize(MigrateSourceInterface::class);
|
||||||
|
|
Loading…
Reference in New Issue