Skip to content

Commit

Permalink
Fixed some tests in unix enviroment.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbasso committed May 13, 2011
1 parent 523b1b6 commit a6f507d
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function testGetThemePath() {
public function testGenerate() {
App::build(array(
'Console' => array(
LIBS . 'tests' . DS . 'test_app' . DS . 'console' . DS
LIBS . 'tests' . DS . 'test_app' . DS . 'Console' . DS
)
));
$this->Task->initialize();
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions lib/Cake/tests/Case/TestSuite/HtmlCoverageReportTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
*/

App::uses('HtmlCoverageReport', 'TestSuite/Coverage');
App::uses('CakeBaseReporter', 'TestSuite/Reporter');

class HtmlCoverageReportTest extends CakeTestCase {
/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/tests/Case/Utility/FolderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function testRecursiveCreateFailure() {
* @return void
*/
function testOperations() {
$path = LIBS . 'console' . DS . 'templates' . DS . 'skel';
$path = LIBS . 'Console' . DS . 'templates' . DS . 'skel';
$Folder = new Folder($path);

$result = is_dir($Folder->pwd());
Expand Down

0 comments on commit a6f507d

Please sign in to comment.