Merge pull request #8291 from wallabag/hide-info-error-prod

Hide sensitive information in production
This commit is contained in:
Jérémy Benoist
2025-10-02 10:32:21 +02:00
committed by GitHub
3 changed files with 2 additions and 6 deletions

View File

@ -1131,7 +1131,7 @@ class ConfigControllerTest extends WallabagTestCase
$this->assertSame(400, $client->getResponse()->getStatusCode());
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
$this->assertStringContainsString('Bad CSRF token.', $body[0]);
$this->assertStringContainsString('400: Bad Request', $body[0]);
}
public function testChangeLocaleWithReferer()