We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c451580 + d84c948 commit 900c656Copy full SHA for 900c656
tests/TaskHandlerTest.php
@@ -74,7 +74,11 @@ public function it_executes_the_incoming_command()
74
75
$output = $this->taskHandler->handle();
76
77
- $this->assertEquals('Current application environment: testing', $output);
+ if (version_compare(app()->version(), '9.0.0', '>=')) {
78
+ $this->assertStringContainsString('The application environment is [testing]', $output);
79
+ } else {
80
+ $this->assertEquals('Current application environment: testing', $output);
81
+ }
82
}
83
84
/** @test */
0 commit comments