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

Merge pull request #3173 from wallabag/domain-name-param

remove craueconfig domain name setting and add a proper one in parame…
This commit is contained in:
Jérémy Benoist 2017-06-10 11:36:03 +02:00 committed by GitHub
commit 679aaf0836
18 changed files with 60 additions and 20 deletions

View file

@ -989,7 +989,7 @@ class EntryControllerTest extends WallabagCoreTestCase
$this->assertEquals($url, $entry->getUrl());
$this->assertContains('Perpignan', $entry->getTitle());
// instead of checking for the filename (which might change) check that the image is now local
$this->assertContains('http://v2.wallabag.org/assets/images/', $entry->getContent());
$this->assertContains('https://your-wallabag-url-instance.com/assets/images/', $entry->getContent());
$client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
}