Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / migrate / tests / src / Unit / process / MigrationLookupTest.php
index ffa28170ee5311c55ee6f6846f8ecf45572e5b69..9158cdbdbdec3e00825bfd83791e227c8d747166 100644 (file)
@@ -4,6 +4,7 @@ namespace Drupal\Tests\migrate\Unit\process;
 
 use Drupal\Core\Entity\EntityStorageInterface;
 use Drupal\migrate\MigrateSkipProcessException;
+use Drupal\migrate\Plugin\migrate\process\Get;
 use Drupal\migrate\Plugin\MigrationInterface;
 use Drupal\migrate\Plugin\migrate\process\MigrationLookup;
 use Drupal\migrate\Plugin\MigrateDestinationInterface;
@@ -249,7 +250,7 @@ class MigrationLookupTest extends MigrateProcessTestCase {
     $migration_plugin_manager = $this->prophesize(MigrationPluginManagerInterface::class);
     $process_plugin_manager = $this->prophesize(MigratePluginManager::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);
     $destination_plugin = $this->prophesize(MigrateDestinationInterface::class);
     $source_plugin = $this->prophesize(MigrateSourceInterface::class);