1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-26 18:21:02 +00:00

Convert 403 errors to 404 errors

This commit is contained in:
Yassine Guedidi 2025-03-12 23:54:28 +01:00
parent 1447c183a4
commit 3bd434091f
8 changed files with 46 additions and 16 deletions

View file

@ -27,6 +27,6 @@ class SettingsControllerTest extends WallabagTestCase
$crawler = $client->request('GET', '/settings');
$this->assertSame(403, $client->getResponse()->getStatusCode());
$this->assertSame(404, $client->getResponse()->getStatusCode());
}
}