Fix two broken tests

This commit is contained in:
Christian Weiske 2013-03-21 17:57:48 +01:00
parent 5c8833d5f5
commit dfaf1d026a
2 changed files with 6 additions and 4 deletions

View File

@ -183,7 +183,7 @@ class SemanticScuttle_Service_TagCache extends SemanticScuttle_DbService
$values = $this->_getSynonymValues($tag2, $uId);
$this->removeSynonymGroup($tag2, $uId);
foreach($values as $value) {
$this->addSynonym($tag1, $value['tag'], $uId);
$this->addSynonym($tag1, $value, $uId);
}
$this->addSynonym($tag1, $tag2, $uId);
break;

View File

@ -270,12 +270,14 @@ class Tag2TagTest extends TestBase
$tts = $this->tts;
$linkedTags = $tts->getLinkedTags('a', '>', $uid);
$this->assertEquals(2, count($linkedTags));
$this->assertSame('b', $linkedTags[0]['tag']);
$this->assertSame('d', $linkedTags[1]['tag']);
$this->assertInternalType('string', $linkedTags[0]);
$this->assertSame('b', $linkedTags[0]);
$this->assertInternalType('string', $linkedTags[1]);
$this->assertSame('d', $linkedTags[1]);
$linkedTags = $tts->getLinkedTags('b', '>', $uid);
$this->assertEquals(1, count($linkedTags));
$this->assertSame('c', $linkedTags[0]['tag']);
$this->assertSame('c', $linkedTags[0]);
$this->assertTrue($tts->existsLinkedTags('d', 'e', '>', $uid));
$this->assertFalse($tts->existsLinkedTags('e', 'd', '>', $uid));
}