diff --git a/core/modules/migrate_drupal/src/Tests/d6/MigrateCommentTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCommentTest.php index 8206618..ccfb661 100644 --- a/core/modules/migrate_drupal/src/Tests/d6/MigrateCommentTest.php +++ b/core/modules/migrate_drupal/src/Tests/d6/MigrateCommentTest.php @@ -39,6 +39,10 @@ protected function setUp() { 'target_entity_type_id' => 'node', ))->save(); + $commentManager = $this->container->get('comment.manager'); + $commentManager->addBodyField('comment'); + $commentManager->addBodyField('comment_no_subject'); + $node = entity_create('node', array( 'type' => 'story', 'nid' => 1,