diff --git a/.travis.yml b/.travis.yml index 8b3e1cc83..0b6bde02e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,5 +2,4 @@ language: php php: - 5.5 - 5.4 - - hhvm script: phpunit Test.php diff --git a/NewUser.txt b/NewUser.txt index e69de29bb..94625b18e 100644 --- a/NewUser.txt +++ b/NewUser.txt @@ -0,0 +1 @@ +KATO-Hiro \ No newline at end of file diff --git a/README.md b/README.md index debcd9c23..e04edc7f9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # travis-broken-example An example that will cause a build failure + +[![Build Status](https://travis-ci.org/KATO-Hiro/travis-broken-example.svg?branch=master)](https://travis-ci.org/KATO-Hiro/travis-broken-example) \ No newline at end of file diff --git a/Test.php b/Test.php index 4b44aa0f9..39f6cff73 100644 --- a/Test.php +++ b/Test.php @@ -3,7 +3,7 @@ class Test extends PHPUnit_Framework_TestCase { public function testOnePlusOne() { - $this->assertEquals(1+1,1); + $this->assertEquals(1+1,2); } }