aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-09-25 14:21:12 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-25 14:21:12 +0200
commitf0fd82d039f491d1057ed194084ee40d4327011e (patch)
tree52e7d599b261c2d4f114a144ef77fcc3047fc866 /tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php
parentbd206a84d8c333c1287f5cb81d2e29f3afe515c2 (diff)
downloadwallabag-f0fd82d039f491d1057ed194084ee40d4327011e.tar.gz
wallabag-f0fd82d039f491d1057ed194084ee40d4327011e.tar.zst
wallabag-f0fd82d039f491d1057ed194084ee40d4327011e.zip
Fix bad parameter for tests
Diffstat (limited to 'tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php')
-rw-r--r--tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php
index ee5b2ab7..101c20eb 100644
--- a/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php
+++ b/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php
@@ -80,7 +80,7 @@ class WallabagRestControllerTest extends WallabagApiTestCase
80 80
81 public function testGetStarredEntries() 81 public function testGetStarredEntries()
82 { 82 {
83 $this->client->request('GET', '/api/entries', ['star' => 1, 'sort' => 'updated']); 83 $this->client->request('GET', '/api/entries', ['starred' => 1, 'sort' => 'updated']);
84 84
85 $this->assertEquals(200, $this->client->getResponse()->getStatusCode()); 85 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
86 86