From eff4a6e1dbfff4fa2655a215cc45a29dc6612171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillaume=20P=C3=A9delagrabe?= Date: Thu, 26 Mar 2020 15:41:01 +0100 Subject: [PATCH] Error messsage in test. --- src/Symfony/Component/Console/Tests/Output/StreamOutputTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Console/Tests/Output/StreamOutputTest.php b/src/Symfony/Component/Console/Tests/Output/StreamOutputTest.php index 34b67e41a5c93..b85007dea69b9 100644 --- a/src/Symfony/Component/Console/Tests/Output/StreamOutputTest.php +++ b/src/Symfony/Component/Console/Tests/Output/StreamOutputTest.php @@ -65,7 +65,7 @@ public function testDoWriteOnFailure() try { $output->writeln('foo'); } catch (\RuntimeException $exception) { - throw new AssertionFailedError('dd'); + throw new AssertionFailedError('Should not fail.'); } rewind($output->getStream()); $this->assertEquals('', stream_get_contents($output->getStream()));