Commit 69d923f5 authored by catch's avatar catch
Browse files

Issue #3281996 by rpayanm, Fabianx: UncaughtExceptionTest is not working when...

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

(cherry picked from commit f23ca85e)
parent 38e9b318
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -105,8 +105,8 @@ public function testUncaughtFatalError() {
    $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;');
  }

  /**