diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2017-12-14 11:19:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-14 11:19:44 +0100 |
commit | a68a80f654be86ae25d49420b86099302ce55bb6 (patch) | |
tree | 158cb4743920e91f87f2194287b81095f527bad2 /tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php | |
parent | 70265817aee257e7e635eda79ce3e037e3b4a242 (diff) | |
parent | b457d7bd32b0eb228f6802d92630d8f0524f042f (diff) | |
download | wallabag-a68a80f654be86ae25d49420b86099302ce55bb6.tar.gz wallabag-a68a80f654be86ae25d49420b86099302ce55bb6.tar.zst wallabag-a68a80f654be86ae25d49420b86099302ce55bb6.zip |
Merge pull request #3442 from wallabag/empty-entry
Fix empty title and domain_name when exception is thrown during fetch
Diffstat (limited to 'tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php')
-rw-r--r-- | tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php index b0d4c4e1..5c7b988c 100644 --- a/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php | |||
@@ -501,6 +501,8 @@ class EntryRestControllerTest extends WallabagApiTestCase | |||
501 | $content = json_decode($this->client->getResponse()->getContent(), true); | 501 | $content = json_decode($this->client->getResponse()->getContent(), true); |
502 | $this->assertGreaterThan(0, $content['id']); | 502 | $this->assertGreaterThan(0, $content['id']); |
503 | $this->assertSame('http://www.example.com/', $content['url']); | 503 | $this->assertSame('http://www.example.com/', $content['url']); |
504 | $this->assertSame('www.example.com', $content['domain_name']); | ||
505 | $this->assertSame('www.example.com', $content['title']); | ||
504 | } finally { | 506 | } finally { |
505 | // Remove the created entry to avoid side effects on other tests | 507 | // Remove the created entry to avoid side effects on other tests |
506 | if (isset($content['id'])) { | 508 | if (isset($content['id'])) { |