From 45c636fb64b1973a40fd83969f25bab8b11cab8b Mon Sep 17 00:00:00 2001 From: prophetz Date: Thu, 19 Sep 2024 08:21:21 +0300 Subject: [PATCH] Fix parameter name in exception for case when Kernel has custom namespace --- src/Codeception/Module/Symfony.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Codeception/Module/Symfony.php b/src/Codeception/Module/Symfony.php index 34694898..a099fe5e 100644 --- a/src/Codeception/Module/Symfony.php +++ b/src/Codeception/Module/Symfony.php @@ -319,7 +319,7 @@ protected function getKernelClass(): string throw new ModuleRequireException( self::class, "Kernel class was not found.\n" - . 'Specify directory where file with Kernel class for your application is located with `app_path` parameter.' + . 'Specify directory where file with Kernel class for your application is located with `kernel_class` parameter.' ); }