mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 06:50:09 +00:00
[Bug] Fix failing webhook test generator (#2276)
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user