From 14720c28a2e56ce433bd848110a90978b0f790f9 Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Wed, 11 Jan 2023 13:51:12 +0500 Subject: [PATCH] Update tests/TenantDatabaseManagerTest.php Co-authored-by: lukinovec --- tests/TenantDatabaseManagerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TenantDatabaseManagerTest.php b/tests/TenantDatabaseManagerTest.php index cc254aca..36b21ed4 100644 --- a/tests/TenantDatabaseManagerTest.php +++ b/tests/TenantDatabaseManagerTest.php @@ -390,7 +390,7 @@ test('path used by sqlite manager can be customized', function () { expect(file_exists($customPath . '/' . $name))->toBeTrue(); }); -test('template tenant connection value can be connection name or connection array', function () { +test('you can define the connection template array in template_tenant_connection or use a name of an existing connection template', function () { Event::listen(TenantCreated::class, JobPipeline::make([CreateDatabase::class])->send(function (TenantCreated $event) { return $event->tenant; })->toListener());