]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php
Define storeArticleHeaders false by default
[github/wallabag/wallabag.git] / tests / Wallabag / ApiBundle / Controller / EntryRestControllerTest.php
index 4ffe478da4191711328e6b3fc6e617159cfd482f..8a65f512033bd41be3d9b7380b56d0796f434088 100644 (file)
@@ -310,7 +310,7 @@ class EntryRestControllerTest extends WallabagApiTestCase
 
     public function testGetTaggedEntriesWithBadParams()
     {
-        $this->client->request('GET', '/api/entries', ['tags' => ['foo','bar']]);
+        $this->client->request('GET', '/api/entries', ['tags' => ['foo', 'bar']]);
 
         $this->assertSame(200, $this->client->getResponse()->getStatusCode());
     }
@@ -855,7 +855,7 @@ class EntryRestControllerTest extends WallabagApiTestCase
 
         $content = json_decode($this->client->getResponse()->getContent(), true);
 
-        $this->assertSame(false, $content['exists']);
+        $this->assertFalse($content['exists']);
     }
 
     public function testGetEntriesExistsWithNoUrl()