diff -u b/core/modules/content_translation/migrations/d6_taxonomy_term_localized_translation.yml b/core/modules/content_translation/migrations/d6_taxonomy_term_localized_translation.yml --- b/core/modules/content_translation/migrations/d6_taxonomy_term_localized_translation.yml +++ b/core/modules/content_translation/migrations/d6_taxonomy_term_localized_translation.yml @@ -1,8 +1,8 @@ id: d6_taxonomy_term_localized_translation -label: Taxonomy vocabularies +label: Taxonomy localized term translations migration_tags: - Drupal 6 - - Configuration + - Content source: plugin: d6_term_localized_translation translations: true diff -u b/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTermLocalizedTranslationTest.php b/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTermLocalizedTranslationTest.php --- b/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTermLocalizedTranslationTest.php +++ b/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTermLocalizedTranslationTest.php @@ -11,7 +11,7 @@ * * @group migrate_drupal_6 */ -class MigrateTermLocalizedTranslationTest extends MigrateDrupal6TestBase { +class MigrateTermLocalizedTranslationTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} @@ -79,7 +79,6 @@ $this->assertInstanceOf(TermInterface::class, $entity); $this->assertSame($expected_language, $entity->language()->getId()); $this->assertSame($expected_label, $entity->label()); - $this->assertSame($expected_vid, $entity->getVocabularyId()); $this->assertSame($expected_vid, $entity->bundle()); $this->assertSame($expected_description, $entity->getDescription()); $this->assertSame($expected_format, $entity->getFormat()); @@ -115,7 +114,7 @@ * Tests the Drupal 6 i18n taxonomy term to Drupal 8 migration. */ public function testTranslatedLocalizedTaxonomyTerms() { - $this->assertEntity(14, 'en', 'Talos IV', 'vocabulary_name_much_longer_than', 'The home of Captain Christopher Pike.' , NULL, '0', []); + $this->assertEntity(14, 'en', 'Talos IV', 'vocabulary_name_much_longer_than', 'The home of Captain Christopher Pike.', NULL, '0', []); $this->assertEntity(15, 'en', 'Vulcan', 'vocabulary_name_much_longer_than', NULL, NULL, '0', []); /** @var \Drupal\taxonomy\TermInterface $entity */ diff -u b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php --- b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php @@ -80,7 +80,7 @@ 'shortcut_set' => 1, 'action' => 23, 'menu' => 8, - 'taxonomy_term' => 8, + 'taxonomy_term' => 15, 'taxonomy_vocabulary' => 7, 'tour' => 4, 'user' => 7,