From 683526921aad7bdc3f80e79f8141063cf4738d0a Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Mon, 2 Oct 2017 14:14:40 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/Queue/Subscribe/PredisSubscribeEventQueueTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Queue/Subscribe/PredisSubscribeEventQueueTest.php b/tests/Queue/Subscribe/PredisSubscribeEventQueueTest.php index e659f4e..6bb23bd 100644 --- a/tests/Queue/Subscribe/PredisSubscribeEventQueueTest.php +++ b/tests/Queue/Subscribe/PredisSubscribeEventQueueTest.php @@ -182,6 +182,7 @@ public function testSubscribeHandlerFailure() $handler = function ($event) use ($exception) { $this->assertInstanceOf(Event::class, $event); $this->assertEquals($this->event, $event); + throw $exception; };