Skip to content

Commit

Permalink
Fix php 5.3 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
veewee committed Dec 1, 2015
1 parent 368139f commit 0d9879b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/GrumPHP/Process/ProcessBuilderSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function it_should_be_able_to_create_process_arguments_based_on_taskname(Externa

function it_should_build_process_based_on_process_arguments()
{
$arguments = new ProcessArgumentsCollection(['/usr/bin/grumphp']);
$arguments = new ProcessArgumentsCollection(array('/usr/bin/grumphp'));
$process = $this->buildProcess($arguments);

$process->shouldHaveType('Symfony\Component\Process\Process');
Expand Down

0 comments on commit 0d9879b

Please sign in to comment.