Skip to content

Commit

Permalink
Merge branch '5.3' into 5.4
Browse files Browse the repository at this point in the history
* 5.3:
  Try making tests a bit less transient
  Fix CI on macos-11
  [Serializer] Fix denormalizing custom class in UidNormalizer
  [Config] In XmlUtils, avoid converting from octal every string starting with a 0
  Make RateLimiter resilient to timeShifting
  • Loading branch information
nicolas-grekas committed Dec 15, 2021
2 parents 9130e1a + 402db09 commit 4aaf50e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Tests/ApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,9 @@ public function testRenderExceptionLineBreaks()
$this->assertStringMatchesFormatFile(self::$fixturesPath.'/application_renderexception_linebreaks.txt', $tester->getDisplay(true), '->renderException() keep multiple line breaks');
}

/**
* @group transient-on-windows
*/
public function testRenderAnonymousException()
{
$application = new Application();
Expand All @@ -906,6 +909,9 @@ public function testRenderAnonymousException()
$this->assertStringContainsString('Dummy type "class@anonymous" is invalid.', $tester->getDisplay(true));
}

/**
* @group transient-on-windows
*/
public function testRenderExceptionStackTraceContainsRootException()
{
$application = new Application();
Expand Down

0 comments on commit 4aaf50e

Please sign in to comment.