forked from wallabag/wallabag
Multiple tag search was broken from API
First, the setParameter() were done on the same parameter which in fact just duplicated the condition in the SQL query (like `where t.label = 'test' and t.label = 'test'`. Changed the parameter doesn't help because the query was then wrong. Changing the way to match associated tags for an entry and it worked.
This commit is contained in:
@ -239,7 +239,7 @@ class ExportControllerTest extends WallabagCoreTestCase
|
||||
$this->assertSame($contentInDB->getLanguage(), $content[0]['language']);
|
||||
$this->assertSame($contentInDB->getReadingtime(), $content[0]['reading_time']);
|
||||
$this->assertSame($contentInDB->getDomainname(), $content[0]['domain_name']);
|
||||
$this->assertSame(['foo bar', 'baz'], $content[0]['tags']);
|
||||
$this->assertSame(['baz', 'foo'], $content[0]['tags']);
|
||||
}
|
||||
|
||||
public function testXmlExport()
|
||||
|
||||
Reference in New Issue
Block a user