diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-04-12 16:40:18 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-04-12 16:40:18 +0200 |
commit | 1880da742027ec08f73e116143f2f514155ab7fd (patch) | |
tree | add5f3b5bc2987f7cc33a55048ec733294105d52 /src/Wallabag/CoreBundle/Tests | |
parent | 76cd8dbb059ebec2d0650089424681afc9bd6b0b (diff) | |
download | wallabag-1880da742027ec08f73e116143f2f514155ab7fd.tar.gz wallabag-1880da742027ec08f73e116143f2f514155ab7fd.tar.zst wallabag-1880da742027ec08f73e116143f2f514155ab7fd.zip |
Restore old behavior for OutOfRangeCurrentPageException
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests')
-rw-r--r-- | src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php index 2d846454..a3527898 100644 --- a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php +++ b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php | |||
@@ -225,7 +225,8 @@ 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(404, $client->getResponse()->getStatusCode()); | 228 | $this->assertEquals(302, $client->getResponse()->getStatusCode()); |
229 | $this->assertEquals('/all/list', $client->getResponse()->getTargetUrl()); | ||
229 | } | 230 | } |
230 | 231 | ||
231 | /** | 232 | /** |