Skip to content
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.

Commit

Permalink
Fixing a couple items pointed out by Ocramius
Browse files Browse the repository at this point in the history
  • Loading branch information
SocalNick committed Jul 3, 2012
1 parent c5178ec commit e23a10c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/TestConfiguration.php.dist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Never commit plaintext passwords to the source code repository.
*/

define('ZEND_FRAMEWORK_PATH', realpath(__DIR__ . '/../../../vendor/ZendFramework/library'));
define('ZF2_PATH', realpath(__DIR__ . '/../../../vendor/ZendFramework/library'));

/**
* The bootstrap supports several more options, however most modules will
Expand Down
2 changes: 1 addition & 1 deletion tests/ZendSkeletonModule/SampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ class SampleTest extends Framework\TestCase

public function testSample()
{
$this->assertInstanceOf('\Zend\Di\Locator', $this->getLocator());
$this->assertInstanceOf('Zend\Di\Locator', $this->getLocator());
}
}
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}

$path = array(
ZEND_FRAMEWORK_PATH,
ZF2_PATH,
get_include_path(),
);
set_include_path(implode(PATH_SEPARATOR, $path));
Expand Down

0 comments on commit e23a10c

Please sign in to comment.