aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
diff options
context:
space:
mode:
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 }