From 6b57d4397a1a76f1ce080b646b7161463f2c7b52 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 20 Jan 2017 16:27:30 +0100 Subject: [PATCH] =?UTF-8?q?Try=20with=20=E2=80=9Ctrue=E2=80=9D=20instead?= =?UTF-8?q?=20of=20=E2=80=9C1=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index f809d58ace..c2a57c8e43 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -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']]; }