diff --git a/tests/feeds_mapper_taxonomy.test b/tests/feeds_mapper_taxonomy.test index 74533a2e146f7d366014911009ec8fa3217f846f..7628597d9c4230991913c68b3e95f0b7e5d92413 100644 --- a/tests/feeds_mapper_taxonomy.test +++ b/tests/feeds_mapper_taxonomy.test @@ -127,7 +127,6 @@ class FeedsMapperTaxonomyTestCase extends FeedsMapperTestCase { array( 'source' => 'parent:taxonomy:tags', 'target' => 'field_tags', - 'unique' => FALSE, ), ) ); diff --git a/tests/feeds_processor_node.test b/tests/feeds_processor_node.test index ee2cc59a5ad0bdd67dc5d465a917fb738747ea40..7e1b8d697b6b34021e6115c62cf249d69e4f2eb8 100644 --- a/tests/feeds_processor_node.test +++ b/tests/feeds_processor_node.test @@ -41,20 +41,20 @@ class FeedsRSStoNodesTest extends FeedsWebTestCase { 'target' => 'title', 'unique' => FALSE, ), - 2 => array( + 1 => array( 'source' => 'description', 'target' => 'body', ), - 3 => array( + 2 => array( 'source' => 'timestamp', 'target' => 'created', ), - 4 => array( + 3 => array( 'source' => 'url', 'target' => 'url', 'unique' => TRUE, ), - 5 => array( + 4 => array( 'source' => 'guid', 'target' => 'guid', 'unique' => TRUE, @@ -189,7 +189,7 @@ class FeedsRSStoNodesTest extends FeedsWebTestCase { // should now be assigned to feed node author. $this->addMappings('syndication', array( - 6 => array( + 5 => array( 'source' => 'parent:uid', 'target' => 'uid', ), @@ -234,12 +234,10 @@ class FeedsRSStoNodesTest extends FeedsWebTestCase { 1 => array( 'source' => 'description', 'target' => 'body', - 'unique' => FALSE, ), 2 => array( 'source' => 'timestamp', 'target' => 'created', - 'unique' => FALSE, ), 3 => array( 'source' => 'url',