Skip to content
Snippets Groups Projects
Commit 672e9afc authored by Chris Leppanen's avatar Chris Leppanen
Browse files

Don't set unique flag for things that don't have it.

parent 4e6cf51c
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,6 @@ class FeedsMapperTaxonomyTestCase extends FeedsMapperTestCase {
array(
'source' => 'parent:taxonomy:tags',
'target' => 'field_tags',
'unique' => FALSE,
),
)
);
......
......@@ -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',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment