Fix bad parameter for tests

This commit is contained in:
Jeremy Benoist 2016-09-25 14:21:12 +02:00
parent bd206a84d8
commit f0fd82d039
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C

View file

@ -80,7 +80,7 @@ class WallabagRestControllerTest extends WallabagApiTestCase
public function testGetStarredEntries()
{
$this->client->request('GET', '/api/entries', ['star' => 1, 'sort' => 'updated']);
$this->client->request('GET', '/api/entries', ['starred' => 1, 'sort' => 'updated']);
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());