Browse Source

Fix slash in namespace.

ADmad 11 years ago
parent
commit
5d2d9289cb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Core/PluginTest.php

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

@@ -73,7 +73,7 @@ class PluginTest extends TestCase {
  * @return void
  */
 	public function testLoadSingleWithAutoload() {
-		$this->assertFalse(class_exists('Company/TestPluginThree\Utility\Hello'));
+		$this->assertFalse(class_exists('Company\TestPluginThree\Utility\Hello'));
 		Plugin::load('Company/TestPluginThree', [
 			'autoload' => true,
 		]);