Skip to content

Commit 9717ede

Browse files
author
Cake Development Corporation
committed
Merge pull request #216 from steinkel/hotfix/precheck-not-found
Hotfix/precheck not found
2 parents b8550a4 + 180fe03 commit 9717ede

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Lib/CakeMigration.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,9 @@ public function __construct($options = array()) {
196196
App::uses('PrecheckException', 'Migrations.Lib/Migration');
197197
$this->Precheck = new PrecheckException();
198198
} else {
199-
$class = Inflector::camelize($options['precheck']);
200-
list($plugin, $class) = pluginSplit($class, true);
199+
list($plugin, $class) = pluginSplit($options['precheck'], true);
200+
$class = Inflector::camelize($class);
201201
App::uses($class, $plugin . 'Lib/Migration');
202-
203202
if (!class_exists($class)) {
204203
throw new MigrationException($this, sprintf(
205204
__d('migrations', 'Migration precheck class (%s) could not be loaded.'), $options['precheck']

Test/Case/Console/Command/MigrationShellTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -957,12 +957,12 @@ public function testMigrationStatus() {
957957
/Migrations Plugin
958958
959959
Current version:
960-
#003 003_increase_class_name_length
960+
#002 002_convert_version_to_class_names
961961
Latest version:
962962
#003 003_increase_class_name_length/
963963
TEXT;
964964
$this->assertRegExp(str_replace("\r\n", "\n", $pattern), $result);
965-
$this->Shell->Version->setVersion(3, 'migrations', false);
965+
$this->Shell->Version->setVersion(2, 'migrations', false);
966966
$this->Shell->output = '';
967967
$this->Shell->args = array('outdated');
968968
$this->Shell->status();
@@ -971,7 +971,7 @@ public function testMigrationStatus() {
971971
/Migrations Plugin
972972
973973
Current version:
974-
#002 002_convert_version_to_class_names
974+
#001 001_init_migrations
975975
Latest version:
976976
#003 003_increase_class_name_length/
977977
TEXT;

0 commit comments

Comments
 (0)