aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-09-07 07:16:26 +0200
committerGitHub <noreply@github.com>2017-09-07 07:16:26 +0200
commitf6d042f56d1f1269652e3ffee0722bbb6f842164 (patch)
tree149187e619048e845f7d4ea12ac3c75b878111f2 /tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php
parent78b36d4dbeedd60c5aa25dbd30a2a2d41a658f94 (diff)
parent9c4a7388da9a250b30ff83c380581fe146af5bb1 (diff)
downloadwallabag-f6d042f56d1f1269652e3ffee0722bbb6f842164.tar.gz
wallabag-f6d042f56d1f1269652e3ffee0722bbb6f842164.tar.zst
wallabag-f6d042f56d1f1269652e3ffee0722bbb6f842164.zip
Merge pull request #3309 from wallabag/fix-multiple-tag-search
Multiple tag search, which was broken from API
Diffstat (limited to 'tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php')
-rw-r--r--tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php b/tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php
index 3e216381..ab7f23cc 100644
--- a/tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php
+++ b/tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php
@@ -239,7 +239,8 @@ class ExportControllerTest extends WallabagCoreTestCase
239 $this->assertSame($contentInDB->getLanguage(), $content[0]['language']); 239 $this->assertSame($contentInDB->getLanguage(), $content[0]['language']);
240 $this->assertSame($contentInDB->getReadingtime(), $content[0]['reading_time']); 240 $this->assertSame($contentInDB->getReadingtime(), $content[0]['reading_time']);
241 $this->assertSame($contentInDB->getDomainname(), $content[0]['domain_name']); 241 $this->assertSame($contentInDB->getDomainname(), $content[0]['domain_name']);
242 $this->assertSame(['foo bar', 'baz'], $content[0]['tags']); 242 $this->assertContains('baz', $content[0]['tags']);
243 $this->assertContains('foo', $content[0]['tags']);
243 } 244 }
244 245
245 public function testXmlExport() 246 public function testXmlExport()