From 8f03e5058d7c1654c3ca636b898d4e671829d369 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Tue, 3 Mar 2026 22:21:42 +0100 Subject: [PATCH] test(github): update webhook sync no-missing-events fixture Adjust the test app webhook events to only include `push` so it matches the current expected event set in the no-patch scenario. --- tests/Feature/GithubAppWebhookEventsSyncTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/GithubAppWebhookEventsSyncTest.php b/tests/Feature/GithubAppWebhookEventsSyncTest.php index 14bb2bd74..a5a860867 100644 --- a/tests/Feature/GithubAppWebhookEventsSyncTest.php +++ b/tests/Feature/GithubAppWebhookEventsSyncTest.php @@ -94,7 +94,7 @@ it('auto-fixes missing events by patching github api', function () { it('does not patch when no events are missing', function () { $app = setupGithubAppWithKey([ - 'webhook_events' => ['push', 'installation'], + 'webhook_events' => ['push'], ]); expect($app->missingWebhookEvents())->toBe([]);