diff --git a/core/modules/content_translation/migrations/d6_taxonomy_term_localized_translation.yml b/core/modules/content_translation/migrations/d6_taxonomy_term_localized_translation.yml index 2521ee9a2a..6c42ce6be5 100644 --- a/core/modules/content_translation/migrations/d6_taxonomy_term_localized_translation.yml +++ b/core/modules/content_translation/migrations/d6_taxonomy_term_localized_translation.yml @@ -42,3 +42,4 @@ destination: migration_dependencies: required: - d6_taxonomy_term + - language diff --git a/core/modules/content_translation/migrations/d6_taxonomy_term_translation.yml b/core/modules/content_translation/migrations/d6_taxonomy_term_translation.yml index 37856b6f06..4e8352b93e 100644 --- a/core/modules/content_translation/migrations/d6_taxonomy_term_translation.yml +++ b/core/modules/content_translation/migrations/d6_taxonomy_term_translation.yml @@ -40,3 +40,4 @@ migration_dependencies: required: - d6_taxonomy_vocabulary - d6_taxonomy_term + - language diff --git a/core/modules/content_translation/migrations/d6_term_node_translation.yml b/core/modules/content_translation/migrations/d6_term_node_translation.yml index 9894b75e38..7215d915cf 100644 --- a/core/modules/content_translation/migrations/d6_term_node_translation.yml +++ b/core/modules/content_translation/migrations/d6_term_node_translation.yml @@ -47,3 +47,4 @@ migration_dependencies: - d6_vocabulary_entity_form_display - d6_node - d6_node_translation + - language diff --git a/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php b/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php index 70b961c52a..3f70a6590b 100644 --- a/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php +++ b/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php @@ -39,6 +39,7 @@ protected function setUp(): void { $this->installEntitySchema('taxonomy_term'); $this->installConfig(static::$modules); $this->executeMigrations([ + 'language', 'd6_node_type', 'd6_field', 'd6_taxonomy_vocabulary', diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTranslationTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTranslationTest.php index aff7d0100b..3b95e9248d 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTranslationTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTranslationTest.php @@ -34,6 +34,7 @@ protected function setUp(): void { $this->installSchema('node', ['node_access']); $this->installSchema('system', ['sequences']); + $this->executeMigration('language'); $this->executeMigration('d6_node_settings'); $this->migrateUsers(FALSE); $this->migrateFields();