Skip to content

Commit

Permalink
Fix make test command.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-cintra committed Jan 18, 2024
1 parent bddf161 commit cc1cf18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/MakeTestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cc1cf18

Please sign in to comment.