Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / migrate_drupal_ui / tests / src / Functional / d7 / MigrateUpgrade7Test.php
similarity index 86%
rename from web/core/modules/migrate_drupal_ui/src/Tests/d7/MigrateUpgrade7Test.php
rename to web/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7Test.php
index 94a42e2c956463cfd8e65b767565099809be4323..2917b163c13dd7750e541e6ea4837c7483b84950 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 
-namespace Drupal\migrate_drupal_ui\Tests\d7;
+namespace Drupal\Tests\migrate_drupal_ui\Functional\d7;
 
-use Drupal\migrate_drupal_ui\Tests\MigrateUpgradeTestBase;
+use Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeTestBase;
 use Drupal\user\Entity\User;
 
 /**
@@ -14,6 +14,11 @@ use Drupal\user\Entity\User;
  */
 class MigrateUpgrade7Test extends MigrateUpgradeTestBase {
 
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = ['file'];
+
   /**
    * {@inheritdoc}
    */
@@ -45,9 +50,9 @@ class MigrateUpgrade7Test extends MigrateUpgradeTestBase {
       'configurable_language' => 4,
       'contact_form' => 3,
       'editor' => 2,
-      'field_config' => 52,
-      'field_storage_config' => 39,
-      'file' => 2,
+      'field_config' => 53,
+      'field_storage_config' => 40,
+      'file' => 3,
       'filter_format' => 7,
       'image_style' => 6,
       'language_content_settings' => 2,
@@ -84,7 +89,7 @@ class MigrateUpgrade7Test extends MigrateUpgradeTestBase {
 
     // Ensure migrated users can log in.
     $user = User::load(2);
-    $user->pass_raw = 'a password';
+    $user->passRaw = 'a password';
     $this->drupalLogin($user);
   }