diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6I18nTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6I18nTest.php index 006b77a766..dbea5df07f 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6I18nTest.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6I18nTest.php @@ -312,7 +312,7 @@ public function testMigrateUpgradeExecute() { // Ensure migrated users can log in. $user = User::load(2); - $user->passRaw = 'a password'; + $user->passRaw = 'john.doe_pass'; $this->drupalLogin($user); $this->assertFollowUpMigrationResults(); } diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7I18nTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7I18nTest.php index a208f90449..5472086f9b 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7I18nTest.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7I18nTest.php @@ -316,7 +316,7 @@ public function testMigrateUpgradeExecute() { // Ensure migrated users can log in. $user = User::load(2); - $user->passRaw = 'john.doe_pass'; + $user->passRaw = 'a password'; $this->drupalLogin($user); $this->assertFollowUpMigrationResults(); }