From cc1cf187f0e302ad84a73976353179e673ba0695 Mon Sep 17 00:00:00 2001 From: Daniel Cintra Date: Thu, 18 Jan 2024 10:56:14 -0300 Subject: [PATCH] Fix make test command. --- src/Console/MakeTestCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/MakeTestCommand.php b/src/Console/MakeTestCommand.php index b1798de..f7a96b5 100644 --- a/src/Console/MakeTestCommand.php +++ b/src/Console/MakeTestCommand.php @@ -22,7 +22,7 @@ class MakeTestCommand extends Command public function handle(): ?int { $this->moduleName = Str::studly($this->argument('moduleName')); - $this->testFileName = Str::studly($this->argument('resourceName')); + $this->testFileName = $this->argument('resourceName'); if (! $this->moduleExists()) { return self::FAILURE;