Skip to content

Commit 26faf16

Browse files
committed
IHF: Test names minor fixes.
1 parent 62c059b commit 26faf16

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/classes/Artisan/CommandTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function it_can_run_command_in_background()
5454
}
5555

5656
/** @test */
57-
public function run_in_background_supports_before_command()
57+
public function run_in_background_supports_before_subcommand()
5858
{
5959
$this->shouldRecieveExecCallOnceWith('(before command && php artisan test:command) > /dev/null 2>&1 &');
6060

@@ -63,7 +63,7 @@ public function run_in_background_supports_before_command()
6363
}
6464

6565
/** @test */
66-
public function run_in_background_supports_after_command()
66+
public function run_in_background_supports_after_subcommand()
6767
{
6868
$this->shouldRecieveExecCallOnceWith('(php artisan test:command && after command) > /dev/null 2>&1 &');
6969

@@ -72,7 +72,7 @@ public function run_in_background_supports_after_command()
7272
}
7373

7474
/** @test */
75-
public function run_in_background_supports_before_and_after_commands_together()
75+
public function run_in_background_supports_before_and_after_subcommands_together()
7676
{
7777
$this->shouldRecieveExecCallOnceWith('(before && php artisan test:command && after) > /dev/null 2>&1 &');
7878

0 commit comments

Comments
 (0)