Browse Source

fix patch on windowns test

saeid 8 years ago
parent
commit
f20b77194c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Core/BasePluginTest.php

+ 1 - 1
tests/TestCase/Core/BasePluginTest.php

@@ -148,7 +148,7 @@ class BasePluginTest extends TestCase
     public function testGetPathSubclass()
     {
         $plugin = new TestPlugin();
-        $expected = TEST_APP . 'Plugin/TestPlugin' . DS;
+        $expected = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS;
         $this->assertSame($expected, $plugin->getPath());
         $this->assertSame($expected . 'config' . DS, $plugin->getConfigPath());
         $this->assertSame($expected . 'src' . DS, $plugin->getClassPath());