aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-06-10 11:36:03 +0200
committerGitHub <noreply@github.com>2017-06-10 11:36:03 +0200
commit679aaf08366c265b29d0e4b2e59919314cf338f9 (patch)
tree6b340839afa56747b6fa8aff3ede2f59d4dcc6d3 /tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
parenta8993999893fb665b5e96597f9b649a2a8b940a2 (diff)
parent1a94252831638cf41f0fe489939dee9dae1c1251 (diff)
downloadwallabag-679aaf08366c265b29d0e4b2e59919314cf338f9.tar.gz
wallabag-679aaf08366c265b29d0e4b2e59919314cf338f9.tar.zst
wallabag-679aaf08366c265b29d0e4b2e59919314cf338f9.zip
Merge pull request #3173 from wallabag/domain-name-param
remove craueconfig domain name setting and add a proper one in parame…
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 3babbaca..8f5c372d 100644
--- a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
+++ b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
@@ -989,7 +989,7 @@ class EntryControllerTest extends WallabagCoreTestCase
989 $this->assertEquals($url, $entry->getUrl()); 989 $this->assertEquals($url, $entry->getUrl());
990 $this->assertContains('Perpignan', $entry->getTitle()); 990 $this->assertContains('Perpignan', $entry->getTitle());
991 // instead of checking for the filename (which might change) check that the image is now local 991 // instead of checking for the filename (which might change) check that the image is now local
992 $this->assertContains('http://v2.wallabag.org/assets/images/', $entry->getContent()); 992 $this->assertContains('https://your-wallabag-url-instance.com/assets/images/', $entry->getContent());
993 993
994 $client->getContainer()->get('craue_config')->set('download_images_enabled', 0); 994 $client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
995 } 995 }