From 6922168420cd6dd0c7a5b8bf611bedadb3d117cb Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Thu, 19 May 2016 07:41:54 +0200 Subject: [PATCH] CS --- .../Tests/Controller/WallabagRestControllerTest.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php b/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php index 4c787277..c50e4d02 100644 --- a/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php +++ b/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php @@ -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']); } - } -- 2.41.0