Skip to content

Commit

Permalink
Fix a copy/paste error in path config
Browse files Browse the repository at this point in the history
  • Loading branch information
LionelLaffineur authored Jun 23, 2022
1 parent 265a9f9 commit 9473c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion console/intense.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected function execute(InputInterface $input, OutputInterface $output) {
\Skeleton\Test\Config::$test_path = \Skeleton\Test\Config::$test_directory;
}

if (!file_exists(\Skeleton\Database\Migration\Config::$test_path)) {
if (!file_exists(\Skeleton\Test\Config::$test_path)) {
$output->writeln('<error>Config::$test_path is not set to a valid directory</error>');
return 1;
}
Expand Down

0 comments on commit 9473c17

Please sign in to comment.