Browse Source

fix the related test

antograssiot 11 years ago
parent
commit
49da430987
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Console/Command/Task/TestTaskTest.php

+ 1 - 1
tests/TestCase/Console/Command/Task/TestTaskTest.php

@@ -630,7 +630,7 @@ class TestTaskTest extends TestCase {
  */
 	public function testTestCaseFileName($type, $class, $expected) {
 		$result = $this->Task->testCaseFileName($type, $class);
-		$expected = ROOT . DS . 'Test/' . $expected;
+		$expected = ROOT . DS . 'tests/' . $expected;
 		$this->assertPathEquals($expected, $result);
 	}