diff options
-rw-r--r-- | tests/ErrorHandler/MiddlewareTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ErrorHandler/MiddlewareTest.php b/tests/ErrorHandler/MiddlewareTest.php index ef2767c..8e62a1f 100644 --- a/tests/ErrorHandler/MiddlewareTest.php +++ b/tests/ErrorHandler/MiddlewareTest.php @@ -88,7 +88,7 @@ class MiddlewareTest extends \PHPUnit_Framework_TestCase $exception = $this->createMock(\Exception::class); - $stream->expects($this->once())->method('write')->with('Unexpected error'); + $stream->expects($this->once())->method('write')->with('An unexpected error occured'); $request->expects($this->once())->method('getProtocolVersion')->willReturn('1.1'); |