diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-05-19 09:18:16 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-05-19 09:18:16 +0200 |
commit | 151f046f61d3cef9071deebb237738849c56392f (patch) | |
tree | ae7c809e42a1c634a8ac3d4d26797355cb5ae128 /src/Wallabag | |
parent | e7658cb00993fc24bddef26b6373197bd4503c99 (diff) | |
parent | 6922168420cd6dd0c7a5b8bf611bedadb3d117cb (diff) | |
download | wallabag-151f046f61d3cef9071deebb237738849c56392f.tar.gz wallabag-151f046f61d3cef9071deebb237738849c56392f.tar.zst wallabag-151f046f61d3cef9071deebb237738849c56392f.zip |
Merge pull request #2098 from wallabag/cs-2092
CS
Diffstat (limited to 'src/Wallabag')
-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 | } |