diff --git a/tests/PlaygroundTest.php b/tests/PlaygroundTest.php index 8526670..a490d63 100644 --- a/tests/PlaygroundTest.php +++ b/tests/PlaygroundTest.php @@ -11,7 +11,7 @@ 'api_key' => env('IMOJE_API_KEY'), 'env' => env('IMOJE_ENV', Environment::SANDBOX->value), ]); -})->skip(fn () => !env('PLAYGROUND', 0), 'playground disabled'); +})->skip(fn () => ! env('PLAYGROUND', 0), 'playground disabled'); it('is for playground purposes', function (): void { /** @var Api $api */ diff --git a/tests/Services/NotificationServiceTest.php b/tests/Services/NotificationServiceTest.php index 1c2afa9..46307c9 100644 --- a/tests/Services/NotificationServiceTest.php +++ b/tests/Services/NotificationServiceTest.php @@ -35,4 +35,3 @@ function mockRequest(BaseDto $dto): Request $result = $this->service->resolve($request); expect($result)->toBeInstanceOf(OneClickNotificationDto::class); }); -