summaryrefslogtreecommitdiff
path: root/vendor/symfony/debug/Tests
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-04-26 07:02:12 +0100
committerGreg Roach <fisharebest@webtrees.net>2019-04-26 07:02:12 +0100
commit6a2416b2a351803acb53b4d61c3b75e01ef259b6 (patch)
treefe185c0377205abb9bd98b211b58a78fb631eba3 /vendor/symfony/debug/Tests
parent58654f783848d535923c92c043d49188036d8b08 (diff)
downloadwebtrees-6a2416b2a351803acb53b4d61c3b75e01ef259b6.tar.gz
webtrees-6a2416b2a351803acb53b4d61c3b75e01ef259b6.tar.bz2
webtrees-6a2416b2a351803acb53b4d61c3b75e01ef259b6.zip
Update vendor dependencies
Diffstat (limited to 'vendor/symfony/debug/Tests')
-rw-r--r--vendor/symfony/debug/Tests/ErrorHandlerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/symfony/debug/Tests/ErrorHandlerTest.php b/vendor/symfony/debug/Tests/ErrorHandlerTest.php
index cf23365d4f..43da7f2766 100644
--- a/vendor/symfony/debug/Tests/ErrorHandlerTest.php
+++ b/vendor/symfony/debug/Tests/ErrorHandlerTest.php
@@ -481,7 +481,7 @@ class ErrorHandlerTest extends TestCase
public function testHandleErrorException()
{
- $exception = new \Error("Class 'Foo' not found");
+ $exception = new \Error("Class 'IReallyReallyDoNotExistAnywhereInTheRepositoryISwear' not found");
$handler = new ErrorHandler();
$handler->setExceptionHandler(function () use (&$args) {
@@ -491,7 +491,7 @@ class ErrorHandlerTest extends TestCase
$handler->handleException($exception);
$this->assertInstanceOf('Symfony\Component\Debug\Exception\ClassNotFoundException', $args[0]);
- $this->assertStringStartsWith("Attempted to load class \"Foo\" from the global namespace.\nDid you forget a \"use\" statement", $args[0]->getMessage());
+ $this->assertStringStartsWith("Attempted to load class \"IReallyReallyDoNotExistAnywhereInTheRepositoryISwear\" from the global namespace.\nDid you forget a \"use\" statement", $args[0]->getMessage());
}
/**