[Bug] Fix failing webhook test generator (#2276)

This commit is contained in:
Sven van Ginkel
2025-07-12 01:15:21 +02:00
committed by GitHub
parent 6cd2503348
commit a8e40a38fc
@@ -5,6 +5,7 @@ namespace App\Actions\Notifications;
use App\Models\Result;
use App\Services\SpeedtestFakeResultGenerator;
use Filament\Notifications\Notification;
use Illuminate\Support\Str;
use Lorisleiva\Actions\Concerns\AsAction;
use Spatie\WebhookServer\WebhookCall;
@@ -30,7 +31,7 @@ class SendWebhookTestNotification
WebhookCall::create()
->url($webhook['url'])
->payload([
'result_id' => fake()->uuid(),
'result_id' => Str::uuid(),
'site_name' => 'Webhook Notification Testing',
'isp' => $fakeResult->data['isp'],
'ping' => $fakeResult->ping,