diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2017-11-21 10:37:36 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2017-11-21 10:37:36 +0100 |
commit | 709e21a3f4ef3616112a02be06045a1e3ab63a01 (patch) | |
tree | 7475cedd2d4af33256158646751d1783d7e2435b /tests/Wallabag/ApiBundle/Controller | |
parent | 8a21985474c2daae9f84ac52463fe7d297aae3ae (diff) | |
download | wallabag-709e21a3f4ef3616112a02be06045a1e3ab63a01.tar.gz wallabag-709e21a3f4ef3616112a02be06045a1e3ab63a01.tar.zst wallabag-709e21a3f4ef3616112a02be06045a1e3ab63a01.zip |
Define storeArticleHeaders false by default
Fix tests which must use `$storeArticleHeaders`.
Fix CS
Diffstat (limited to 'tests/Wallabag/ApiBundle/Controller')
-rw-r--r-- | tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php index 95c64501..8a65f512 100644 --- a/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php | |||
@@ -855,7 +855,7 @@ class EntryRestControllerTest extends WallabagApiTestCase | |||
855 | 855 | ||
856 | $content = json_decode($this->client->getResponse()->getContent(), true); | 856 | $content = json_decode($this->client->getResponse()->getContent(), true); |
857 | 857 | ||
858 | $this->assertSame(false, $content['exists']); | 858 | $this->assertFalse($content['exists']); |
859 | } | 859 | } |
860 | 860 | ||
861 | public function testGetEntriesExistsWithNoUrl() | 861 | public function testGetEntriesExistsWithNoUrl() |