aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-05-11 14:53:56 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2017-05-11 14:59:53 +0200
commit1517d5772db05ce86b9958dc6545471d8702bf60 (patch)
tree66bac04bfd2ea2bf7571502dee4f14623c9d996e /tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
parentdda6a6addc0fd54031514e81d2b55d5066b7157c (diff)
downloadwallabag-1517d5772db05ce86b9958dc6545471d8702bf60.tar.gz
wallabag-1517d5772db05ce86b9958dc6545471d8702bf60.tar.zst
wallabag-1517d5772db05ce86b9958dc6545471d8702bf60.zip
Replaced json_array with array
And fixed failing test due to @j0k3r :trollface:
Diffstat (limited to 'tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php')
-rw-r--r--tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
index 82ac3ac3..698e5e13 100644
--- a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
+++ b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
@@ -915,7 +915,7 @@ class EntryControllerTest extends WallabagCoreTestCase
915 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $entry); 915 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $entry);
916 $this->assertEquals($url, $entry->getUrl()); 916 $this->assertEquals($url, $entry->getUrl());
917 $this->assertContains('Perpignan', $entry->getTitle()); 917 $this->assertContains('Perpignan', $entry->getTitle());
918 $this->assertContains('/d9bc0fcd.jpeg', $entry->getContent()); 918 $this->assertContains('/c4789a7f.jpeg', $entry->getContent());
919 919
920 $client->getContainer()->get('craue_config')->set('download_images_enabled', 0); 920 $client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
921 } 921 }