From 7a629cfcb03e7cdf35a2f61de309eef3aa320474 Mon Sep 17 00:00:00 2001 From: Alex Renoki Date: Fri, 4 Sep 2020 22:35:35 +0300 Subject: [PATCH] Fixed typo --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 48b9d21..d83bd9b 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -276,7 +276,7 @@ abstract class TestCase extends BaseTestCase // factory lazy instance on boot. $this->app->singleton(ReplicationInterface::class, function () use ($replicationDriver) { $client = config( - "websockets.replication.{$driver}.client", + "websockets.replication.{$replicationDriver}.client", \BeyondCode\LaravelWebSockets\PubSub\Drivers\LocalClient::class );