diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 2fa215e..d2872c6 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -26,7 +26,7 @@ spl_autoload_register(function($class) { return true; } } elseif (0 === strpos($class, 'BeSimple\SoapCommon\\')) { - $path = __DIR__.'/../../BeSimpleSoapCommon/src/'.($class = strtr($class, '\\', '/')).'.php'; + $path = __DIR__.'/../vendor/besimple-soapcommon/src/'.($class = strtr($class, '\\', '/')).'.php'; if (file_exists($path) && is_readable($path)) { require_once $path;