aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-05-19 07:41:54 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-05-19 07:41:54 +0200
commit6922168420cd6dd0c7a5b8bf611bedadb3d117cb (patch)
treeae7c809e42a1c634a8ac3d4d26797355cb5ae128 /src/Wallabag/ApiBundle
parente7658cb00993fc24bddef26b6373197bd4503c99 (diff)
downloadwallabag-6922168420cd6dd0c7a5b8bf611bedadb3d117cb.tar.gz
wallabag-6922168420cd6dd0c7a5b8bf611bedadb3d117cb.tar.zst
wallabag-6922168420cd6dd0c7a5b8bf611bedadb3d117cb.zip
CS
Diffstat (limited to 'src/Wallabag/ApiBundle')
-rw-r--r--src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php7
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}