From a0acf1a20ddc5e06b7b5d6b186f791117905f550 Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Wed, 11 Jan 2023 13:57:01 +0500 Subject: [PATCH] update test name --- tests/TenantDatabaseManagerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TenantDatabaseManagerTest.php b/tests/TenantDatabaseManagerTest.php index 36b21ed4..a6562eb3 100644 --- a/tests/TenantDatabaseManagerTest.php +++ b/tests/TenantDatabaseManagerTest.php @@ -440,7 +440,7 @@ test('you can define the connection template array in template_tenant_connection expect($manager->database()->getConfig('host'))->toBe('mysql2'); }); -test('template tenant connection value can be partial database config', function () { +test('you can define the partial connection template array in template_tenant_connection and it will be completed by merging into the central connection', function () { Event::listen(TenantCreated::class, JobPipeline::make([CreateDatabase::class])->send(function (TenantCreated $event) { return $event->tenant; })->toListener());