diff --git a/core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserTest.php b/core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserTest.php index 3b104ad..5ba8d85 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserTest.php @@ -4,6 +4,7 @@ use Drupal\comment\Entity\CommentType; use Drupal\node\Entity\NodeType; +use Drupal\taxonomy\Entity\Vocabulary; use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase; use Drupal\user\Entity\User; use Drupal\user\RoleInterface; @@ -46,6 +47,7 @@ protected function setUp() { $this->createType('book'); $this->createType('forum'); $this->createType('test_content_type'); + Vocabulary::create(['vid' => 'test_vocabulary'])->save(); $this->executeMigrations([ 'user_picture_field', 'user_picture_field_instance',