Try with “true” instead of “1”.

This commit is contained in:
James Cole 2017-01-20 16:27:30 +01:00
parent 8f2b898b2b
commit 6b57d4397a
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -102,7 +102,7 @@ abstract class TestCase extends Illuminate\Foundation\Testing\TestCase
/*
* If on Travis, return very small set.
*/
if (getenv('TRAVIS') == '1') {
if (getenv('TRAVIS') == 'true') {
return [['Default value']];
}