]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
CS 2098/head
authorJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 19 May 2016 05:41:54 +0000 (07:41 +0200)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 19 May 2016 05:41:54 +0000 (07:41 +0200)
src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php

index 4c787277f5ff3cedc8906524e7a1e743486e3e88..c50e4d027c0b386d49ea9a8e9ac841e0d80a3416 100644 (file)
@@ -443,7 +443,7 @@ class WallabagRestControllerTest extends WallabagApiTestCase
 
         $content = json_decode($this->client->getResponse()->getContent(), true);
 
-      $this->assertEquals(true, $content['is_archived']);
+        $this->assertEquals(true, $content['is_archived']);
     }
 
     public function testSaveIsStarredAfterPost()
@@ -465,7 +465,7 @@ class WallabagRestControllerTest extends WallabagApiTestCase
 
         $content = json_decode($this->client->getResponse()->getContent(), true);
 
-      $this->assertEquals(true, $content['is_starred']);
+        $this->assertEquals(true, $content['is_starred']);
     }
 
     public function testSaveIsArchivedAfterPatch()
@@ -508,7 +508,6 @@ class WallabagRestControllerTest extends WallabagApiTestCase
 
         $content = json_decode($this->client->getResponse()->getContent(), true);
 
-      $this->assertEquals(true, $content['is_starred']);
+        $this->assertEquals(true, $content['is_starred']);
     }
-
 }