1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Fix tests

This commit is contained in:
Jeremy Benoist 2017-08-03 16:20:49 +02:00
parent 7c04b7396a
commit 33264c2d02
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
2 changed files with 3 additions and 2 deletions

View file

@ -239,7 +239,8 @@ 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(['baz', 'foo'], $content[0]['tags']);
$this->assertContains('baz', $content[0]['tags']);
$this->assertContains('foo', $content[0]['tags']);
}
public function testXmlExport()