Issue #3281996 by rpayanm, Fabianx: UncaughtExceptionTest is not working when using recommended-project

(cherry picked from commit f23ca85e42)
merge-requests/2540/head
catch 2022-07-25 13:32:44 +09:00
parent 30b945ba74
commit 42143debf9
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ class UncaughtExceptionTest extends BrowserTestBase {
$this->assertSession()->responseContains((string) $message);
$this->assertSession()->responseContains('<pre class="backtrace">');
// Ensure we are escaping but not double escaping.
$this->assertSession()->responseContains('&#039;');
$this->assertSession()->responseNotContains('&amp;#039;');
$this->assertSession()->responseContains('&gt;');
$this->assertSession()->responseNotContains('&amp;gt;');
}
/**