From 3954d071121b6d1ea7f4717f188a991c6c33cb22 Mon Sep 17 00:00:00 2001 From: Andreas Schamberger Date: Sun, 29 Jan 2012 17:46:39 +0100 Subject: [PATCH] fixed broken bootstrap --- tests/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;