From 3f3b7a3bffc2f37f66e317fc08acc47f9a85b5de Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Mon, 22 Aug 2022 13:03:29 +0500 Subject: [PATCH] Update TenantConfigTest.php --- tests/Features/TenantConfigTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/Features/TenantConfigTest.php b/tests/Features/TenantConfigTest.php index 9efd4e37..5c12c5f0 100644 --- a/tests/Features/TenantConfigTest.php +++ b/tests/Features/TenantConfigTest.php @@ -14,8 +14,7 @@ afterEach(function () { TenantConfig::$storageToConfigMap = []; }); -/** @test */ -test('nested_tenant_values_are_merged', function () { +test('nested tenant values are merged', function () { expect(config('whitelabel.theme'))->toBeNull(); config([ 'tenancy.features' => [TenantConfig::class], @@ -101,4 +100,4 @@ test('the value can be set to multiple config keys', function () { 'public2' => null, 'private' => null, ], config('services.paypal')); -}); \ No newline at end of file +});