diff --git a/tests/BrewTest.php b/tests/BrewTest.php index 7913fbf..fb98772 100644 --- a/tests/BrewTest.php +++ b/tests/BrewTest.php @@ -83,7 +83,7 @@ public function test_has_installed_php_indicates_if_php_is_installed_via_brew() $brew = Mockery::mock(Brew::class.'[installed]', [new CommandLine, new Filesystem]); $brew->shouldReceive('installed')->with('php')->andReturn(false); - $brew->shouldReceive('installed')->with('php77')->andReturn(false); + $brew->shouldReceive('installed')->with('php74')->andReturn(false); $brew->shouldReceive('installed')->with('php73')->andReturn(false); $brew->shouldReceive('installed')->with('php72')->andReturn(false); $brew->shouldReceive('installed')->with('php71')->andReturn(true);