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.
1 parent 71b31b0 commit f442114Copy full SHA for f442114
tests/classes/Artisan/CommandTest.php
@@ -47,9 +47,9 @@ public function it_has_static_constructor_named_factory()
47
/** @test */
48
public function it_can_run_command_in_background()
49
{
50
- self::$functions->shouldReceive('exec')->with("(php artisan test command) > /dev/null 2>&1 &")->once();
+ self::$functions->shouldReceive('exec')->with('(php artisan test:command) > /dev/null 2>&1 &')->once();
51
52
- $command = Command::factory('test command');
+ $command = Command::factory('test:command');
53
$command->runInBackground();
54
}
55
0 commit comments