Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of git://git.zendframework.com/zf
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelkael committed Jul 15, 2010
3 parents 2776034 + ae0c36d + a1ec0e4 commit 3e4bdb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Cloud/CloudTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public function testSetPrefixPathViaOptions()
$cloud = $this->_getCloud(array(
'prefixPath' => array(
'prefix' => 'ZendTest\Tag\Cloud\TestAsset',
'path' => dirname(__FILE__) . '/TestAsset'
'path' => __DIR__ . '/TestAsset'
),
'cloudDecorator' => array(
'decorator' => 'CloudDummy1',
Expand All @@ -135,7 +135,7 @@ public function testSetPrefixPathsViaOptions()
'prefixPath' => array(
array(
'prefix' => 'ZendTest\Tag\Cloud\TestAsset',
'path' => dirname(__FILE__) . '/TestAsset'
'path' => __DIR__ . '/TestAsset'
)
),
'cloudDecorator' => array(
Expand Down Expand Up @@ -324,7 +324,7 @@ protected function _getCloud($options = null, $setPluginLoader = true)
$cloud = new Tag\Cloud($options);

if ($setPluginLoader) {
$cloud->getPluginLoader()->addPrefixPath('ZendTest\Tag\Cloud\TestAsset', dirname(__FILE__) . '/TestAsset');
$cloud->getPluginLoader()->addPrefixPath('ZendTest\Tag\Cloud\TestAsset', __DIR__ . '/TestAsset');
}

return $cloud;
Expand Down

0 comments on commit 3e4bdb7

Please sign in to comment.