diff --git a/core/modules/migrate_drupal/src/Tests/Dump/Drupal6FieldInstance.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6FieldInstance.php
index 25e5910..72de96c 100644
--- a/core/modules/migrate_drupal/src/Tests/Dump/Drupal6FieldInstance.php
+++ b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6FieldInstance.php
@@ -626,6 +626,18 @@ public function load() {
       )),
       'description' => 'An example datetime field.',
     ))
+    ->values(array(
+      'field_name' => 'field_multitext',
+      'type_name' => 'story',
+      'weight' => 31,
+      'label' => 'MultiText',
+      'widget_type' => 'text_textfield',
+      'widget_settings' => 'a:4:{s:4:"rows";i:5;s:4:"size";s:2:"60";s:13:"default_value";a:1:{i:0;a:2:{s:5:"value";s:0:"";s:14:"_error_element";s:47:"default_value_widget][field_multitext][0][value";}}s:17:"default_value_php";N;}',
+      'display_settings' => 'a:6:{s:6:"weight";s:2:"31";s:6:"parent";s:0:"";s:5:"label";a:1:{s:6:"format";s:5:"above";}s:6:"teaser";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}s:4:"full";a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}i:4;a:2:{s:6:"format";s:7:"default";s:7:"exclude";i:0;}}',
+      'description' => 'An example multi-valued text field.',
+      'widget_module' => 'text',
+      'widget_active' => 1,
+    ))
     ->execute();
 
     // Create the field table.
@@ -856,6 +868,16 @@ public function load() {
       'db_columns' => 'a:0:{}',
       'active' => 0,
     ))
+    ->values(array(
+      'field_name' => 'field_multitext',
+      'module' => 'text',
+      'type' => 'text',
+      'global_settings' => 'a:4:{s:15:"text_processing";s:1:"0";s:10:"max_length";s:0:"";s:14:"allowed_values";s:0:"";s:18:"allowed_values_php";s:0:"";}',
+      'multiple' => 3,
+      'db_storage' => 0,
+      'db_columns' => 'a:1:{s:5:"value";a:5:{s:4:"type";s:4:"text";s:4:"size";s:3:"big";s:8:"not null";b:0;s:8:"sortable";b:1;s:5:"views";b:1;}}',
+      'active' => 1,
+    ))
     ->execute();
 
     $this->createTable('content_field_test', array(
@@ -904,7 +926,6 @@ public function load() {
         ))
       ->execute();
 
-
     $this->createTable('content_field_test_two', array(
       'description' => 'Table for field_test_two',
       'fields' => array(
@@ -967,6 +988,64 @@ public function load() {
     ->execute();
     $this->setModuleVersion('content', '6001');
 
+    $this->createTable('content_field_multitext', array(
+      'description' => t('TODO: please describe this table!'),
+      'fields' => array(
+        'vid' => array(
+          'description' => t('TODO: please describe this field!'),
+          'type' => 'int',
+          'unsigned' => TRUE,
+          'not null' => TRUE,
+          'default' => 0,
+        ),
+        'nid' => array(
+          'description' => t('TODO: please describe this field!'),
+          'type' => 'int',
+          'unsigned' => TRUE,
+          'not null' => TRUE,
+          'default' => 0,
+        ),
+        'delta' => array(
+          'description' => t('TODO: please describe this field!'),
+          'type' => 'int',
+          'unsigned' => TRUE,
+          'not null' => TRUE,
+          'default' => 0,
+        ),
+        'field_multitext_value' => array(
+          'description' => t('TODO: please describe this field!'),
+          'type' => 'text',
+          'size' => 'big',
+          'not null' => FALSE,
+        ),
+      ),
+      'primary key' => array('vid', 'delta'),
+    ));
+    $this->database->insert('content_field_multitext')->fields(array(
+      'vid',
+      'nid',
+      'delta',
+      'field_multitext_value',
+    ))
+    ->values(array(
+      'vid' => 1,
+      'nid' => 1,
+      'delta' => 0,
+      'field_multitext_value' => 'Uno',
+    ))
+    ->values(array(
+      'vid' => 1,
+      'nid' => 1,
+      'delta' => 1,
+      'field_multitext_value' => 'Dos',
+    ))
+    ->values(array(
+      'vid' => 1,
+      'nid' => 1,
+      'delta' => 2,
+      'field_multitext_value' => 'Tres',
+    ))
+    ->execute();
   }
 
 }
diff --git a/core/modules/migrate_drupal/src/Tests/d6/MigrateCckFieldValuesTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCckFieldValuesTest.php
index 1d5c3ce..fc354fb 100644
--- a/core/modules/migrate_drupal/src/Tests/d6/MigrateCckFieldValuesTest.php
+++ b/core/modules/migrate_drupal/src/Tests/d6/MigrateCckFieldValuesTest.php
@@ -8,6 +8,7 @@
 namespace Drupal\migrate_drupal\Tests\d6;
 
 use Drupal\migrate\MigrateExecutable;
+use Drupal\node\Entity\Node;
 
 /**
  * Test cck field migration from Drupal 6 to 8.
@@ -68,6 +69,16 @@ protected function setUp() {
       'field_name' => 'field_test_three',
       'bundle' => 'story',
     ))->save();
+    entity_create('field_config', array(
+      'entity_type' => 'node',
+      'name' => 'field_multitext',
+      'type' => 'text',
+    ))->save();
+    entity_create('field_instance_config', array(
+      'entity_type' => 'node',
+      'field_name' => 'field_multitext',
+      'bundle' => 'story',
+    ))->save();
 
     // Add some id mappings for the dependant migrations.
     $id_mappings = array(
@@ -80,6 +91,7 @@ protected function setUp() {
       'd6_node' => array(
         array(array(1), array(1)),
         array(array(2), array(2)),
+        array(array(3), array(3)),
       ),
     );
     $this->prepareIdMappings($id_mappings);
@@ -96,12 +108,15 @@ protected function setUp() {
    * Test CCK migration from Drupal 6 to 8.
    */
   public function testCckFields() {
-    $node = node_load(1);
+    $node = Node::load(1);
     $this->assertEqual($node->field_test->value, 'This is a shared text field', "Shared field storage field is correct.");
     $this->assertEqual($node->field_test->format, 1, "Shared field storage field with multiple columns is correct.");
     $this->assertEqual($node->field_test_two->value, 10, 'Multi field storage field is correct');
     $this->assertEqual($node->field_test_two[1]->value, 20, 'Multi field second value is correct.');
     $this->assertEqual($node->field_test_three->value, '42.42', 'Single field second value is correct.');
+    $this->assertEqual($node->field_multitext[0]->value, 'Uno', 'Multitext field first value is correct.');
+    $this->assertEqual($node->field_multitext[1]->value, 'Dos', 'Multitext field second value is correct.');
+    $this->assertEqual($node->field_multitext[2]->value, 'Tres', 'Multitext field third value is correct.');
   }
 
 }
