diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-08-04 22:01:07 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2018-08-04 22:21:13 +0200 |
commit | 46e7fc89b469a774fa26a89b5124306fa0ea258e (patch) | |
tree | af7c91b275f5fa94128f58f31062fb3cf68f87a4 /tests/Unit/Exceptions | |
parent | de0ac90675718552efc122115495cd5df6b86ccf (diff) |
Fixed tests after #431: Hotfix php7 syntax error
Diffstat (limited to 'tests/Unit/Exceptions')
-rw-r--r-- | tests/Unit/Exceptions/HandlerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Unit/Exceptions/HandlerTest.php b/tests/Unit/Exceptions/HandlerTest.php index 40202be8..5a6ffe16 100644 --- a/tests/Unit/Exceptions/HandlerTest.php +++ b/tests/Unit/Exceptions/HandlerTest.php @@ -61,10 +61,10 @@ class HandlerTest extends TestCase /** @var Handler|Mock $handler */ $handler = $this->getMockBuilder(Handler::class) - ->setMethods(['die']) + ->setMethods(['terminateApplicationImmediately']) ->getMock(); $handler->expects($this->once()) - ->method('die'); + ->method('terminateApplicationImmediately'); $handler->setHandler(Handler::ENV_PRODUCTION, $handlerMock); |