mirror of
https://github.com/wallabag/wallabag.git
synced 2025-06-27 16:36:00 +00:00
No class level route annotations
This commit is contained in:
parent
1393f78005
commit
c20f37975b
4 changed files with 11 additions and 15 deletions
|
@ -11,7 +11,7 @@ class IgnoreOriginInstanceRuleControllerTest extends WallabagTestCase
|
|||
$this->logInAs('admin');
|
||||
$client = $this->getTestClient();
|
||||
|
||||
$crawler = $client->request('GET', '/ignore-origin-instance-rules/');
|
||||
$crawler = $client->request('GET', '/ignore-origin-instance-rules');
|
||||
|
||||
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ class SiteCredentialControllerTest extends WallabagTestCase
|
|||
|
||||
$client->getContainer()->get(Config::class)->set('restricted_access', 0);
|
||||
|
||||
$client->request('GET', '/site-credentials/');
|
||||
$client->request('GET', '/site-credentials');
|
||||
|
||||
$this->assertSame(404, $client->getResponse()->getStatusCode());
|
||||
|
||||
|
@ -29,7 +29,7 @@ class SiteCredentialControllerTest extends WallabagTestCase
|
|||
$this->logInAs('admin');
|
||||
$client = $this->getTestClient();
|
||||
|
||||
$crawler = $client->request('GET', '/site-credentials/');
|
||||
$crawler = $client->request('GET', '/site-credentials');
|
||||
|
||||
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue