Skip to content

Commit 8e90e17

Browse files
author
Cake Development Corporation
committed
Merge pull request #217 from steinkel/hotfix/travis
Hotfix/travis
2 parents 9717ede + 1489496 commit 8e90e17

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.travis.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@ env:
1313
- REQUIRE="phpunit/phpunit:3.7.31"
1414

1515
matrix:
16-
- DB=mysql CAKE_VERSION=master
16+
- DB=mysql CAKE_VERSION=2.6
1717

1818
matrix:
1919
include:
2020
- php: 5.3
2121
env:
22-
- CAKE_VERSION=master
22+
- CAKE_VERSION=2.6
2323
- php: 5.4
2424
env:
25-
- CAKE_VERSION=master
25+
- CAKE_VERSION=2.6
2626
- php: 5.5
2727
env:
28-
- CAKE_VERSION=master
28+
- CAKE_VERSION=2.6
2929

3030
before_script:
31-
- git clone https://github.com/burzum/travis.git --depth 1 ../travis
31+
- git clone https://github.com/steinkel/travis.git --depth 1 ../travis
3232
- ../travis/before_script.sh
3333
- if [ "$PHPCS" != 1 ]; then
3434
echo "
@@ -44,3 +44,4 @@ after_success:
4444
4545
notifications:
4646
email: false
47+

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-
#002 002_convert_version_to_class_names
960+
#003 003_increase_class_name_length
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(2, 'migrations', false);
965+
$this->Shell->Version->setVersion(3, '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-
#001 001_init_migrations
974+
#002 002_convert_version_to_class_names
975975
Latest version:
976976
#003 003_increase_class_name_length/
977977
TEXT;

0 commit comments

Comments
 (0)