aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2015-07-29 09:02:30 +0200
committerJeremy Benoist <j0k3r@users.noreply.github.com>2015-07-29 09:02:30 +0200
commit7e63b892f9682e62f6758bb51c6912499f5bd8d1 (patch)
treeb0b1da23086cba171d134946092f43cd31cd1e62 /src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
parent9b9b05008a96a45bbf6da4c0c1c1b1244b83c6af (diff)
parent9fb6ac830fa669beef1dd11070421262c073192c (diff)
downloadwallabag-7e63b892f9682e62f6758bb51c6912499f5bd8d1.tar.gz
wallabag-7e63b892f9682e62f6758bb51c6912499f5bd8d1.tar.zst
wallabag-7e63b892f9682e62f6758bb51c6912499f5bd8d1.zip
Merge pull request #1250 from frankoa/v2_pagination_and_api
Adds pagerfanta paginator everywhere, modifies article routing.
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php')
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
index 904e2a5c..2cd50130 100644
--- a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
@@ -78,7 +78,7 @@ class EntryControllerTest extends WallabagCoreTestCase
78 $this->logInAs('admin'); 78 $this->logInAs('admin');
79 $client = $this->getClient(); 79 $client = $this->getClient();
80 80
81 $client->request('GET', '/archive'); 81 $client->request('GET', '/archive/list');
82 82
83 $this->assertEquals(200, $client->getResponse()->getStatusCode()); 83 $this->assertEquals(200, $client->getResponse()->getStatusCode());
84 } 84 }
@@ -88,7 +88,7 @@ class EntryControllerTest extends WallabagCoreTestCase
88 $this->logInAs('admin'); 88 $this->logInAs('admin');
89 $client = $this->getClient(); 89 $client = $this->getClient();
90 90
91 $client->request('GET', '/starred'); 91 $client->request('GET', '/starred/list');
92 92
93 $this->assertEquals(200, $client->getResponse()->getStatusCode()); 93 $this->assertEquals(200, $client->getResponse()->getStatusCode());
94 } 94 }