Skip to content

Commit 7abab3a

Browse files
authored
Test Improvements (#50960)
* Test Improvements * wip
1 parent 7ba6047 commit 7abab3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Integration/Foundation/Console/AboutCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ class AboutCommandTest extends TestCase
1111
{
1212
public function testItCanDisplayAboutCommandAsJson()
1313
{
14-
$process = remote('about --json')->mustRun();
14+
$process = remote('about --json', ['APP_ENV' => 'local'])->mustRun();
1515

1616
tap(json_decode($process->getOutput(), true), function ($output) {
1717
Assert::assertArraySubset([
1818
'application_name' => 'Laravel',
1919
'php_version' => PHP_VERSION,
20-
'environment' => 'testing',
20+
'environment' => 'local',
2121
'debug_mode' => true,
2222
'url' => 'localhost',
2323
'maintenance_mode' => false,

0 commit comments

Comments
 (0)