Skip to content

Commit

Permalink
Merge pull request #5725 from Digital-Peak/configuration/bootstrap
Browse files Browse the repository at this point in the history
Use path resolver for bootstrap file detection
  • Loading branch information
Naktibalda committed Oct 18, 2019
2 parents 50907be + 920435b commit 82d7aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Codeception/Configuration.php
Expand Up @@ -275,7 +275,7 @@ public static function loadBootstrap($bootstrap, $path)
return;
}

$bootstrap = codecept_is_path_absolute($bootstrap)
$bootstrap = \Codeception\Util\PathResolver::isPathAbsolute($bootstrap)
? $bootstrap
: rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . $bootstrap;

Expand Down

0 comments on commit 82d7aaa

Please sign in to comment.