diff -u b/core/modules/migrate_drupal/tests/fixtures/drupal7.php b/core/modules/migrate_drupal/tests/fixtures/drupal7.php --- b/core/modules/migrate_drupal/tests/fixtures/drupal7.php +++ b/core/modules/migrate_drupal/tests/fixtures/drupal7.php @@ -20963,7 +20963,7 @@ )) ->values(array( 'lid' => '797', - 'translation' => 'fr - Bajor', + 'translation' => 'fr - Emissary', 'language' => 'fr', 'plid' => '0', 'plural' => '0', @@ -20971,7 +20971,7 @@ )) ->values(array( 'lid' => '798', - 'translation' => 'fr - 11th planet of the Bajoran system', + 'translation' => 'fr - Pilot episode', 'language' => 'fr', 'plid' => '0', 'plural' => '0', @@ -55551,8 +55551,8 @@ ->values(array( 'tid' => '25', 'vid' => '8', - 'name' => 'Bajor', - 'description' => '11th planet of the Bajoran system', + 'name' => 'Emissary', + 'description' => 'Pilot episode', 'format' => 'filtered_html', 'weight' => '0', 'language' => 'und', diff -u b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTermLocalizedTranslationTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTermLocalizedTranslationTest.php --- b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTermLocalizedTranslationTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTermLocalizedTranslationTest.php @@ -112,6 +112,7 @@ public function testTranslatedLocalizedTaxonomyTerms() { $this->assertEntity(19, 'en', 'Jupiter Station', 'vocablocalized', 'Holographic research.', 'filtered_html', '0', []); $this->assertEntity(20, 'en', 'DS9', 'vocablocalized', 'Terok Nor', 'filtered_html', '0', []); + $this->assertEntity(25, 'en', 'Emissary', 'vocablocalized2', 'Pilot episode', 'filtered_html', '0', []); /** @var \Drupal\taxonomy\TermInterface $entity */ $entity = Term::load(19); @@ -133,8 +134,8 @@ $this->assertFalse($entity->hasTranslation('is')); $this->assertTrue($entity->hasTranslation('fr')); $translation = $entity->getTranslation('fr'); - $this->assertSame('fr - Bajor', $translation->label()); - $this->assertSame('fr - 11th planet of the Bajoran system', $translation->getDescription()); + $this->assertSame('fr - Emissary', $translation->label()); + $this->assertSame('fr - Pilot episode', $translation->getDescription()); } } only in patch2: unchanged: --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php @@ -92,7 +92,7 @@ protected function getEntityCounts() { 'file' => 3, 'filter_format' => 7, 'image_style' => 6, - 'language_content_settings' => 20, + 'language_content_settings' => 21, 'node' => 7, 'node_type' => 7, 'rdf_mapping' => 8,