diff --git a/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6AuditIdsTest.php b/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6AuditIdsTest.php index 0c23e19..a0bb591 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6AuditIdsTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6AuditIdsTest.php @@ -113,7 +113,6 @@ public function testAllMigrationsWithIdConflicts() { ->createInstancesByTag('Drupal 6'); // Create content. - $this->createFeedContent(); $this->createContent(); // Audit the IDs of all migrations. There should be conflicts since content diff --git a/core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7AuditIdsTest.php b/core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7AuditIdsTest.php index 3889277..1d74423 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7AuditIdsTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7AuditIdsTest.php @@ -112,7 +112,6 @@ public function testAllMigrationsWithIdConflicts() { ->createInstancesByTag('Drupal 7'); // Create content. - $this->createFeedContent(); $this->createContent(); // Audit the IDs of all Drupal 7 migrations. There should be conflicts since diff --git a/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php b/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php index 06888ef..9efd4ed 100644 --- a/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php +++ b/core/modules/migrate_drupal/tests/src/Traits/CreateTestContentEntitiesTrait.php @@ -184,4 +184,5 @@ protected function createContentPostUpgrade() { ]); $user->save(); } + } diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php index 7b89681..58c1cf5 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php @@ -350,7 +350,6 @@ protected function assertIdConflict($session) { * The expected counts of each entity type. * @param string $version * The drupal verison. - * */ protected function assertMigrationResults(array $expected_counts, $version) { // Have to reset all the statics after migration to ensure entities are diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php index 53ca6e3..1116d80 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php @@ -78,9 +78,10 @@ protected function getEntityCounts() { 'base_field_override' => 38, ]; } - /** - * {@inheritdoc} - */ + + /** + * {@inheritdoc} + */ protected function getEntityCountsIncremental() { $counts = $this->getEntityCounts(); $counts['block_content'] = 3;