From 7bac6180501bfc008bb05dd721133e4dc29ace85 Mon Sep 17 00:00:00 2001 From: Chris Leppanen <chris.leppanen@gmail.com> Date: Fri, 5 Oct 2012 05:11:17 -0700 Subject: [PATCH] Fix failing test after making them stricter. --- tests/feeds_mapper_taxonomy.test | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/tests/feeds_mapper_taxonomy.test b/tests/feeds_mapper_taxonomy.test index 7628597d..94dd188f 100644 --- a/tests/feeds_mapper_taxonomy.test +++ b/tests/feeds_mapper_taxonomy.test @@ -122,14 +122,13 @@ class FeedsMapperTaxonomyTestCase extends FeedsMapperTestCase { $this->assertText('Do not import on submission'); // Map feed node's taxonomy to feed item node's taxonomy. - $this->addMappings('syndication', - array( - array( - 'source' => 'parent:taxonomy:tags', - 'target' => 'field_tags', - ), - ) + $mappings = array( + 5 => array( + 'source' => 'parent:taxonomy:tags', + 'target' => 'field_tags', + ), ); + $this->addMappings('syndication', $mappings); // Create feed node and add term term1. $langcode = LANGUAGE_NONE; -- GitLab