From f3652a85098dc2ae155fbd9e82583cc3b9d6205b Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 15 Apr 2026 10:18:29 +0200 Subject: [PATCH] Make `with()` formatting consistent --- tests/Bootstrappers/BroadcastingConfigBootstrapperTest.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/Bootstrappers/BroadcastingConfigBootstrapperTest.php b/tests/Bootstrappers/BroadcastingConfigBootstrapperTest.php index 2b2a81d9..efb0aaf0 100644 --- a/tests/Bootstrappers/BroadcastingConfigBootstrapperTest.php +++ b/tests/Bootstrappers/BroadcastingConfigBootstrapperTest.php @@ -242,4 +242,8 @@ test('mappings specified in credentialsMap override default mapPresets', functio tenancy()->initialize($tenant); expect(config("broadcasting.connections.{$driver}.key"))->toBe('custom_value'); -})->with(['pusher', 'ably', 'reverb']); +})->with([ + 'pusher', + 'ably', + 'reverb', +]);