diff --git a/tests/Integration/Foundation/Console/AboutCommandTest.php b/tests/Integration/Foundation/Console/AboutCommandTest.php index 6795d3bafeb2..d671ba8207c4 100644 --- a/tests/Integration/Foundation/Console/AboutCommandTest.php +++ b/tests/Integration/Foundation/Console/AboutCommandTest.php @@ -11,13 +11,13 @@ class AboutCommandTest extends TestCase { public function testItCanDisplayAboutCommandAsJson() { - $process = remote('about --json')->mustRun(); + $process = remote('about --json', ['APP_ENV' => 'local'])->mustRun(); tap(json_decode($process->getOutput(), true), function ($output) { Assert::assertArraySubset([ 'application_name' => 'Laravel', 'php_version' => PHP_VERSION, - 'environment' => 'testing', + 'environment' => 'local', 'debug_mode' => true, 'url' => 'localhost', 'maintenance_mode' => false,