Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Sep 13, 2023
1 parent 5a86593 commit 1b0dd37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Presets/Laravel.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function rootNamespace(): string
*/
public function testingNamespace(): string
{
return $this->preset->config('testing.namespace', 'Tests');
return $this->config('testing.namespace', 'Tests');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Presets/Package.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function rootNamespace(): string
*/
public function testingNamespace(): string
{
return $this->preset->config('testing.namespace', $this->rootNamespace().'\Tests');
return $this->config('testing.namespace', $this->rootNamespace().'\Tests');
}

/**
Expand Down

0 comments on commit 1b0dd37

Please sign in to comment.