Skip to content

Commit dfb33c4

Browse files
committed
Fix test bootstrap autoloading
- Modified Bootstrap::initAutoloader() to use PSR-4-style autoloading.
1 parent 77dbe32 commit dfb33c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Bootstrap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ protected static function initAutoloader()
4949
'Zend\Loader\StandardAutoloader' => array(
5050
'autoregister_zf' => true,
5151
'namespaces' => array(
52-
'ZF\ApiProblem' => __DIR__ . '/../src/ZF/ApiProblem/',
53-
__NAMESPACE__ => __DIR__ . '/ZFTest/ApiProblem/',
52+
'ZF\ApiProblem' => __DIR__ . '/../src/',
53+
__NAMESPACE__ => __DIR__,
5454
),
5555
),
5656
));

0 commit comments

Comments
 (0)