From b73c938c4352390980a0da4fad98169bbbed32fb Mon Sep 17 00:00:00 2001 From: Naoray Date: Fri, 10 Jan 2025 08:52:49 +0000 Subject: [PATCH] Fix styling --- tests/GithubIssueHandlerFactoryTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/GithubIssueHandlerFactoryTest.php b/tests/GithubIssueHandlerFactoryTest.php index 399e5c8..74eb03e 100644 --- a/tests/GithubIssueHandlerFactoryTest.php +++ b/tests/GithubIssueHandlerFactoryTest.php @@ -27,10 +27,10 @@ test('it throws exception for missing required config', function () { $factory = new GithubIssueHandlerFactory; - expect(fn() => $factory([])) + expect(fn () => $factory([])) ->toThrow(InvalidArgumentException::class, 'GitHub repository is required'); - expect(fn() => $factory(['repo' => 'test/repo'])) + expect(fn () => $factory(['repo' => 'test/repo'])) ->toThrow(InvalidArgumentException::class, 'GitHub token is required'); });