From db7c0826486ed33b3c3ae959788e7b45e788933b Mon Sep 17 00:00:00 2001 From: Eduardo Pessine Date: Sat, 18 Nov 2023 14:32:54 -0300 Subject: [PATCH] test: fix app key set --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 3b882ea..5d309c4 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -12,7 +12,7 @@ abstract class TestCase extends BaseTestCase protected function defineEnvironment($app) { tap($app['config'], function (Repository $config) { - $config->set('key', str()->random(16)); + $config->set('app.key', str()->random(16)); }); } }