Skip to content

Commit

Permalink
Fix 7.7 typo in brew test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstauffer committed Nov 30, 2019
1 parent 7785fc8 commit fb56297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/BrewTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

1 comment on commit fb56297

@abdusfauzi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh yeah! thank you.

Please sign in to comment.