diff --git a/.travis.yml b/.travis.yml index 9746c3a9..75a0ebfc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,22 +13,22 @@ env: - REQUIRE="phpunit/phpunit:3.7.31" matrix: - - DB=mysql CAKE_VERSION=master + - DB=mysql CAKE_VERSION=2.6 matrix: include: - php: 5.3 env: - - CAKE_VERSION=master + - CAKE_VERSION=2.6 - php: 5.4 env: - - CAKE_VERSION=master + - CAKE_VERSION=2.6 - php: 5.5 env: - - CAKE_VERSION=master + - CAKE_VERSION=2.6 before_script: - - git clone https://github.com/burzum/travis.git --depth 1 ../travis + - git clone https://github.com/steinkel/travis.git --depth 1 ../travis - ../travis/before_script.sh - if [ "$PHPCS" != 1 ]; then echo " @@ -44,3 +44,4 @@ after_success: notifications: email: false + diff --git a/Test/Case/Console/Command/MigrationShellTest.php b/Test/Case/Console/Command/MigrationShellTest.php index 5878e176..554173c3 100644 --- a/Test/Case/Console/Command/MigrationShellTest.php +++ b/Test/Case/Console/Command/MigrationShellTest.php @@ -957,12 +957,12 @@ public function testMigrationStatus() { /Migrations Plugin Current version: - #002 002_convert_version_to_class_names + #003 003_increase_class_name_length Latest version: #003 003_increase_class_name_length/ TEXT; $this->assertRegExp(str_replace("\r\n", "\n", $pattern), $result); - $this->Shell->Version->setVersion(2, 'migrations', false); + $this->Shell->Version->setVersion(3, 'migrations', false); $this->Shell->output = ''; $this->Shell->args = array('outdated'); $this->Shell->status(); @@ -971,7 +971,7 @@ public function testMigrationStatus() { /Migrations Plugin Current version: - #001 001_init_migrations + #002 002_convert_version_to_class_names Latest version: #003 003_increase_class_name_length/ TEXT;