From f20b77194cbbd6309d43da361b7f9f3d731debf2 Mon Sep 17 00:00:00 2001 From: saeid Date: Sun, 18 Mar 2018 22:31:37 +0330 Subject: [PATCH] fix patch on windowns test --- tests/TestCase/Core/BasePluginTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase/Core/BasePluginTest.php b/tests/TestCase/Core/BasePluginTest.php index d6e511b234d..954931d7550 100644 --- a/tests/TestCase/Core/BasePluginTest.php +++ b/tests/TestCase/Core/BasePluginTest.php @@ -148,7 +148,7 @@ public function testGetPathOptionValue() 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());