Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / migrate_drupal / tests / src / Kernel / CckFieldBackwardsCompatibilityTest.php
index 11dceec733810a74758200481e1ed2dd2caa6d2f..bb314b4e975eb55139270f40d3c1e8b58690cc2e 100644 (file)
@@ -2,7 +2,7 @@
 
 namespace Drupal\Tests\migrate_drupal\Kernel;
 
-use Drupal\migrate_field_plugin_manager_test\Plugin\migrate\cckfield\d6\FileField;
+use Drupal\migrate_cckfield_plugin_manager_test\Plugin\migrate\cckfield\D6FileField;
 use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
 
 /**
@@ -13,7 +13,7 @@ class CckFieldBackwardsCompatibilityTest extends MigrateDrupal6TestBase {
   /**
    * {@inheritdoc}
    */
-  public static $modules = ['file', 'migrate_field_plugin_manager_test'];
+  public static $modules = ['file', 'migrate_cckfield_plugin_manager_test'];
 
   /**
    * Ensures that the cckfield backwards compatibility layer is invoked.
@@ -23,7 +23,7 @@ class CckFieldBackwardsCompatibilityTest extends MigrateDrupal6TestBase {
       ->get('plugin.manager.migration')
       ->getDefinition('d6_node:story');
 
-    $this->assertSame(FileField::class, $migration['process']['field_test_filefield']['class']);
+    $this->assertSame(D6FileField::class, $migration['process']['field_test_filefield']['class']);
   }
 
 }