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

Replaced json_array with array

And fixed failing test due to @j0k3r :trollface:
This commit is contained in:
Nicolas Lœuillet 2017-05-11 14:53:56 +02:00
parent dda6a6addc
commit 1517d5772d
2 changed files with 5 additions and 5 deletions

View file

@ -915,7 +915,7 @@ class EntryControllerTest extends WallabagCoreTestCase
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $entry);
$this->assertEquals($url, $entry->getUrl());
$this->assertContains('Perpignan', $entry->getTitle());
$this->assertContains('/d9bc0fcd.jpeg', $entry->getContent());
$this->assertContains('/c4789a7f.jpeg', $entry->getContent());
$client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
}