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

View File

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