From 9ab0a729d6477ff72c6fed2b5c619982ff204d0e Mon Sep 17 00:00:00 2001 From: lukinovec Date: Mon, 13 Apr 2026 15:28:11 +0200 Subject: [PATCH] Fix typo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- tests/Bootstrappers/BroadcastingConfigBootstrapperTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Bootstrappers/BroadcastingConfigBootstrapperTest.php b/tests/Bootstrappers/BroadcastingConfigBootstrapperTest.php index 0ced35e2..93c0a81a 100644 --- a/tests/Bootstrappers/BroadcastingConfigBootstrapperTest.php +++ b/tests/Bootstrappers/BroadcastingConfigBootstrapperTest.php @@ -103,7 +103,7 @@ test('BroadcastingConfigBootstrapper maps tenant properties to broadcaster crede // When updating tenant properties without reinitializing, the tenant property update doesn't update the config, // so the config has to be modified manually. Only methods that use TenancyBroadcastManager::get() // will use the updated credentials without needing to reinitialize tenancy (e.g. the bound - // BroadcasterContract instance will still the original credentials, even after config gets updated directly). + // BroadcasterContract instance will still use the original credentials, even after config gets updated directly). config(["broadcasting.connections.{$driver}.key" => 'new_tenant1_key']); expect(app(BroadcastManager::class)->driver()->config['key'])->toBe('new_tenant1_key');