Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Naoray authored and github-actions[bot] committed Jan 10, 2025
1 parent 33823d7 commit b73c938
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/GithubIssueHandlerFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});

Expand Down

0 comments on commit b73c938

Please sign in to comment.