1
0
Fork 0
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:
Yassine Guedidi 2025-03-18 01:22:55 +01:00
parent 1393f78005
commit c20f37975b
4 changed files with 11 additions and 15 deletions

View file

@ -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());

View file

@ -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());