aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-12 16:04:17 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-12 16:04:17 +0200
commit624a7c6df1142048cc73770e2c7b7377acd30a9e (patch)
tree005759ecb04a9d4e41e06a932d67cb295c307159 /src/Wallabag/CoreBundle/Tests
parent80bd17f00df7691086a47632cefff4ad0e670a44 (diff)
downloadwallabag-624a7c6df1142048cc73770e2c7b7377acd30a9e.tar.gz
wallabag-624a7c6df1142048cc73770e2c7b7377acd30a9e.tar.zst
wallabag-624a7c6df1142048cc73770e2c7b7377acd30a9e.zip
Improve pagination when user has lot of entries
Fix #1905 * Usage of whiteoctober/WhiteOctoberPagerfantaBundle
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests')
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
index 46fbaf91..f15aaab1 100644
--- a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
@@ -225,8 +225,7 @@ class EntryControllerTest extends WallabagCoreTestCase
225 225
226 $client->request('GET', '/all/list/900'); 226 $client->request('GET', '/all/list/900');
227 227
228 $this->assertEquals(302, $client->getResponse()->getStatusCode()); 228 $this->assertEquals(404, $client->getResponse()->getStatusCode());
229 $this->assertEquals('/all/list', $client->getResponse()->getTargetUrl());
230 } 229 }
231 230
232 /** 231 /**