Browse Source

Fix include

Mark Scherer 11 years ago
parent
commit
60b522adc0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Test/Case/Model/Behavior/PasswordableBehaviorTest.php

+ 1 - 1
Test/Case/Model/Behavior/PasswordableBehaviorTest.php

@@ -4,7 +4,7 @@ App::uses('AuthComponent', 'Controller/Component');
 App::uses('SimplePasswordHasher', 'Controller/Component/Auth');
 
 if (!function_exists('password_hash')) {
-	require_once CakePlugin::path('Tools') . 'Lib/Bootstrap/Password.php';
+	require_once CakePlugin::path('Shim') . 'Lib/Bootstrap/Password.php';
 }
 
 class PasswordableBehaviorTest extends CakeTestCase {