Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit c7d6d8a

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: [BrowserKit] Bump dom-crawler minimum version requirement Make one call to "OutputInterface::write" method per table row [HttpKernel] Fix context dependent test [Debug] Fix context dependent test
2 parents 2a1b327 + 00f654c commit c7d6d8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/ErrorHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ public function testHandleErrorException()
499499
$handler->handleException($exception);
500500

501501
$this->assertInstanceOf('Symfony\Component\Debug\Exception\ClassNotFoundException', $args[0]);
502-
$this->assertSame("Attempted to load class \"Foo\" from the global namespace.\nDid you forget a \"use\" statement?", $args[0]->getMessage());
502+
$this->assertStringStartsWith("Attempted to load class \"Foo\" from the global namespace.\nDid you forget a \"use\" statement", $args[0]->getMessage());
503503
}
504504

505505
public function testHandleFatalErrorOnHHVM()

0 commit comments

Comments
 (0)