diff options
-rw-r--r-- | src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php | 7 |
1 files 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 | |||
443 | 443 | ||
444 | $content = json_decode($this->client->getResponse()->getContent(), true); | 444 | $content = json_decode($this->client->getResponse()->getContent(), true); |
445 | 445 | ||
446 | $this->assertEquals(true, $content['is_archived']); | 446 | $this->assertEquals(true, $content['is_archived']); |
447 | } | 447 | } |
448 | 448 | ||
449 | public function testSaveIsStarredAfterPost() | 449 | public function testSaveIsStarredAfterPost() |
@@ -465,7 +465,7 @@ class WallabagRestControllerTest extends WallabagApiTestCase | |||
465 | 465 | ||
466 | $content = json_decode($this->client->getResponse()->getContent(), true); | 466 | $content = json_decode($this->client->getResponse()->getContent(), true); |
467 | 467 | ||
468 | $this->assertEquals(true, $content['is_starred']); | 468 | $this->assertEquals(true, $content['is_starred']); |
469 | } | 469 | } |
470 | 470 | ||
471 | public function testSaveIsArchivedAfterPatch() | 471 | public function testSaveIsArchivedAfterPatch() |
@@ -508,7 +508,6 @@ class WallabagRestControllerTest extends WallabagApiTestCase | |||
508 | 508 | ||
509 | $content = json_decode($this->client->getResponse()->getContent(), true); | 509 | $content = json_decode($this->client->getResponse()->getContent(), true); |
510 | 510 | ||
511 | $this->assertEquals(true, $content['is_starred']); | 511 | $this->assertEquals(true, $content['is_starred']); |
512 | } | 512 | } |
513 | |||
514 | } | 513 | } |