diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ContactCategoryTest.php b/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ContactCategoryTest.php index 870d1cb..7da67f7 100644 --- a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ContactCategoryTest.php +++ b/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ContactCategoryTest.php @@ -31,7 +31,7 @@ class ContactCategoryTest extends MigrateSqlSourceTestCase { array( 'cid' => 1, 'category' => 'contact category value 1', - 'recipients' => 'admin@example.com,user@example.com', + 'recipients' => array('admin@example.com','user@example.com'), 'reply' => 'auto reply value 1', 'weight' => 0, 'selected' => 0, @@ -39,7 +39,7 @@ class ContactCategoryTest extends MigrateSqlSourceTestCase { array( 'cid' => 2, 'category' => 'contact category value 2', - 'recipients' => 'admin@example.com,user@example.com', + 'recipients' => array('admin@example.com','user@example.com'), 'reply' => 'auto reply value 2', 'weight' => 0, 'selected' => 0, @@ -63,6 +63,7 @@ public static function getInfo() { protected function setUp() { foreach ($this->expectedResults as $k => $row) { $this->databaseContents['contact'][$k] = $row; + $this->databaseContents['contact'][$k]['recipients'] = implode(',', $row['recipients']); } parent::setUp(); }